FirebaseAnalyticsInterop.podspec 1.1 KB

1234567891011121314151617181920212223242526272829
  1. Pod::Spec.new do |s|
  2. s.name = 'FirebaseAnalyticsInterop'
  3. s.version = '1.4.0'
  4. s.summary = 'Interfaces that allow other Firebase SDKs to use Analytics functionality.'
  5. s.description = <<-DESC
  6. Not for public use.
  7. A set of protocols that other Firebase SDKs can use to interoperate with FirebaseAnalytics in a
  8. safe and reliable manner.
  9. DESC
  10. s.homepage = 'https://firebase.google.com'
  11. s.license = { :type => 'Apache', :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 => 'AnalyticsInterop-' + s.version.to_s
  18. }
  19. s.social_media_url = 'https://twitter.com/Firebase'
  20. s.ios.deployment_target = '8.0'
  21. s.osx.deployment_target = '10.11'
  22. s.tvos.deployment_target = '10.0'
  23. s.source_files = 'Interop/Analytics/**/*.h'
  24. s.public_header_files = 'Interop/Analytics/Public/*.h'
  25. end