FirebaseRemoteConfigInterop.podspec 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. Pod::Spec.new do |s|
  2. s.name = 'FirebaseRemoteConfigInterop'
  3. s.version = '12.6.0'
  4. s.summary = 'Interfaces that allow other Firebase SDKs to use Remote Config functionality.'
  5. s.description = <<-DESC
  6. Not for public use.
  7. A set of protocols that other Firebase SDKs can use to interoperate with FirebaseRemoteConfig in a safe
  8. and reliable manner.
  9. DESC
  10. s.homepage = 'https://firebase.google.com'
  11. s.license = { :type => 'Apache-2.0', :file => 'LICENSE' }
  12. s.authors = 'Google, Inc.'
  13. # NOTE that these should not be used externally, this is for Firebase pods to depend on each
  14. # other.
  15. s.source = {
  16. :git => 'https://github.com/firebase/firebase-ios-sdk.git',
  17. :tag => 'CocoaPods-' + s.version.to_s
  18. }
  19. s.swift_version = '5.9'
  20. s.cocoapods_version = '>= 1.12.0'
  21. s.prefix_header_file = false
  22. s.social_media_url = 'https://twitter.com/Firebase'
  23. # The ios deployment target must support Crashlytics.
  24. s.ios.deployment_target = '15.0'
  25. s.osx.deployment_target = '10.15'
  26. s.tvos.deployment_target = '15.0'
  27. s.watchos.deployment_target = '7.0'
  28. s.source_files = 'FirebaseRemoteConfig/Interop/*.swift'
  29. end