-
Notifications
You must be signed in to change notification settings - Fork 310
Expand file tree
/
Copy pathAdjust.podspec
More file actions
54 lines (49 loc) · 2.51 KB
/
Adjust.podspec
File metadata and controls
54 lines (49 loc) · 2.51 KB
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
50
51
52
53
54
Pod::Spec.new do |s|
s.name = "Adjust"
s.module_name = "AdjustSdk"
s.version = "5.6.1"
s.summary = "This is the iOS SDK of Adjust. You can read more about it at https://adjust.com."
s.homepage = "https://github.com/adjust/ios_sdk"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Adjust" => "[email protected]" }
s.source = { :git => "https://github.com/adjust/ios_sdk.git", :tag => "v#{s.version}" }
s.ios.deployment_target = '12.0'
s.tvos.deployment_target = '12.0'
s.framework = 'SystemConfiguration'
s.ios.weak_framework = 'AdSupport'
s.tvos.weak_framework = 'AdSupport'
s.default_subspec = 'Adjust'
s.subspec 'Adjust' do |adj|
adj.source_files = 'Adjust/**/*.{h,m}', 'UmbrellaHeaders/sdk/*.{h,m}'
adj.public_header_files = 'Adjust/*.h', 'UmbrellaHeaders/sdk/*.h'
adj.exclude_files = 'Adjust/include/**/*.h'
adj.resource_bundle = {'Adjust' => ['Adjust/*.xcprivacy']}
adj.header_dir = 'AdjustSdk'
adj.dependency 'AdjustSignature', '3.62.0'
end
s.subspec 'AdjustUnsigned' do |adj|
adj.source_files = 'Adjust/**/*.{h,m}', 'UmbrellaHeaders/sdk/*.{h,m}'
adj.public_header_files = 'Adjust/*.h', 'UmbrellaHeaders/sdk/*.h'
adj.exclude_files = 'Adjust/include/**/*.h'
adj.resource_bundle = {'Adjust' => ['Adjust/*.xcprivacy']}
adj.header_dir = 'AdjustSdk'
end
s.subspec 'AdjustWebBridge' do |awb|
awb.source_files = 'Adjust/**/*.{h,m}', 'AdjustBridge/*.{h,m}', 'UmbrellaHeaders/webbridge/*.{h,m}'
awb.public_header_files = 'Adjust/*.h', 'AdjustBridge/*.h', 'UmbrellaHeaders/webbridge/*.h'
awb.exclude_files = ['Adjust/include/**/*.h', 'AdjustBridge/include/**/*.h']
awb.resource_bundle = {'Adjust' => ['Adjust/*.xcprivacy']}
awb.header_dir = 'AdjustSdk'
awb.ios.deployment_target = '12.0'
awb.dependency 'AdjustSignature', '3.62.0'
end
s.subspec 'AdjustGoogleOdmPlugin' do |odm|
odm.ios.deployment_target = '12.0'
odm.source_files = 'plugins/odm/headers/*.{h,m}', 'plugins/odm/sources/cocoapods/*.{h,m}'
end
s.subspec 'AdjustGoogleOdm' do |odm|
odm.ios.deployment_target = '12.0'
odm.source_files = 'plugins/odm/headers/*.{h,m}', 'plugins/odm/sources/cocoapods/*.{h,m}'
odm.dependency 'Adjust/Adjust'
end
end