| 12345678910111213141516171819202122232425262728293031 |
- Pod::Spec.new do |s|
- s.name = 'FirebaseAnalyticsSwift'
- s.version = '7.9.0-beta'
- s.summary = 'Swift Extensions for Firebase Analytics'
- s.description = <<-DESC
- Firebase Analytics is a free, out-of-the-box analytics solution that inspires actionable insights based on app usage and user engagement.
- DESC
- s.homepage = 'https://firebase.google.com/features/analytics/'
- s.license = { :type => 'Apache', :file => 'LICENSE' }
- s.authors = 'Google, Inc.'
- s.source = {
- :git => 'https://github.com/Firebase/firebase-ios-sdk.git',
- :tag => 'CocoaPods-' + s.version.to_s
- }
- s.static_framework = true
- s.swift_version = '5.0'
- s.ios.deployment_target = '13.0'
- s.cocoapods_version = '>= 1.10.0'
- s.prefix_header_file = false
- s.source_files = [
- 'FirebaseAnalyticsSwift/Sources/*.swift',
- ]
- s.dependency 'FirebaseAnalytics', '~> 7.7'
- end
|