FirebaseAnalyticsSwift.podspec 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. Pod::Spec.new do |s|
  2. s.name = 'FirebaseAnalyticsSwift'
  3. s.version = '8.6.0-beta'
  4. s.summary = 'Swift Extensions for Firebase Analytics'
  5. s.description = <<-DESC
  6. Firebase Analytics is a free, out-of-the-box analytics solution that inspires actionable insights based on app usage and user engagement.
  7. DESC
  8. s.homepage = 'https://firebase.google.com/features/analytics/'
  9. s.license = { :type => 'Apache', :file => 'LICENSE' }
  10. s.authors = 'Google, Inc.'
  11. s.source = {
  12. :git => 'https://github.com/Firebase/firebase-ios-sdk.git',
  13. :tag => 'CocoaPods-' + s.version.to_s
  14. }
  15. s.static_framework = true
  16. s.swift_version = '5.0'
  17. s.ios.deployment_target = '13.0'
  18. s.cocoapods_version = '>= 1.10.0'
  19. s.prefix_header_file = false
  20. s.source_files = [
  21. 'FirebaseAnalyticsSwift/Sources/*.swift',
  22. ]
  23. s.dependency 'FirebaseAnalytics', '~> 8.0'
  24. end