This repository has been archived by the owner on Aug 20, 2024. It is now read-only.
forked from firebase/firebase-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FirebaseAnalytics.podspec
49 lines (38 loc) · 1.73 KB
/
FirebaseAnalytics.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
Pod::Spec.new do |s|
s.name = 'FirebaseAnalytics'
s.version = '10.22.0'
s.summary = 'Firebase Analytics for iOS'
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 => 'Copyright', :text => 'Copyright 2022 Google' }
s.authors = 'Google, Inc.'
s.source = {
:http => 'https://dl.google.com/firebase/ios/analytics/d9e6824c98c32455/FirebaseAnalytics-10.22.0.tar.gz'
}
s.cocoapods_version = '>= 1.12.0'
s.swift_version = '5.3'
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '12.0'
s.libraries = 'c++', 'sqlite3', 'z'
s.frameworks = 'StoreKit'
s.dependency 'FirebaseCore', '~> 10.0'
s.dependency 'FirebaseInstallations', '~> 10.0'
s.dependency 'GoogleUtilities/AppDelegateSwizzler', '~> 7.11'
s.dependency 'GoogleUtilities/MethodSwizzler', '~> 7.11'
s.dependency 'GoogleUtilities/NSData+zlib', '~> 7.11'
s.dependency 'GoogleUtilities/Network', '~> 7.11'
s.dependency 'nanopb', '>= 2.30908.0', '< 2.30911.0'
s.default_subspecs = 'AdIdSupport'
s.subspec 'AdIdSupport' do |ss|
ss.dependency 'GoogleAppMeasurement', '10.22.0'
ss.vendored_frameworks = 'Frameworks/FirebaseAnalytics.xcframework'
end
s.subspec 'WithoutAdIdSupport' do |ss|
ss.dependency 'GoogleAppMeasurement/WithoutAdIdSupport', '10.22.0'
ss.vendored_frameworks = 'Frameworks/FirebaseAnalytics.xcframework'
end
end