FirebaseInstanceID.podspec 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. Pod::Spec.new do |s|
  2. s.name = 'FirebaseInstanceID'
  3. s.version = '3.7.0'
  4. s.summary = 'Firebase InstanceID for iOS'
  5. s.description = <<-DESC
  6. Instance ID provides a unique ID per instance of your iOS apps. In addition to providing
  7. unique IDs for authentication,Instance ID can generate security tokens for use with other
  8. services.
  9. DESC
  10. s.homepage = 'https://firebase.google.com'
  11. s.license = { :type => 'Apache', :file => 'LICENSE' }
  12. s.authors = 'Google, Inc.'
  13. s.source = {
  14. :git => 'https://github.com/firebase/firebase-ios-sdk.git',
  15. :tag => 'InstanceID-' + s.version.to_s
  16. }
  17. s.social_media_url = 'https://twitter.com/Firebase'
  18. s.ios.deployment_target = '8.0'
  19. s.cocoapods_version = '>= 1.4.0'
  20. s.static_framework = true
  21. s.prefix_header_file = false
  22. base_dir = "Firebase/InstanceID/"
  23. s.source_files = base_dir + '**/*.[mh]'
  24. s.requires_arc = base_dir + '*.m'
  25. s.public_header_files = base_dir + 'Public/*.h'
  26. s.pod_target_xcconfig = {
  27. 'GCC_C_LANGUAGE_STANDARD' => 'c99',
  28. 'GCC_PREPROCESSOR_DEFINITIONS' =>
  29. 'FIRInstanceID_LIB_VERSION=' + String(s.version)
  30. }
  31. s.framework = 'Security'
  32. s.dependency 'FirebaseCore', '~> 5.2'
  33. s.dependency 'GoogleUtilities/UserDefaults', '~> 5.2'
  34. s.dependency 'GoogleUtilities/Environment', '~> 5.2'
  35. end