-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathPurchaseConnector.podspec
More file actions
44 lines (37 loc) · 2.04 KB
/
PurchaseConnector.podspec
File metadata and controls
44 lines (37 loc) · 2.04 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
Pod::Spec.new do |s|
s.name = 'PurchaseConnector'
s.version = "6.18.1"
s.summary = 'AppsFlyer iOS SDK ARS'
s.description = <<-DESC
AppsFlyer native track allows you to find what attracts new users to your app,
measure all your app marketing activities on one dashboard, and add new traffic sources in minutes,
all without having to update SDK.
DESC
s.homepage = 'https://www.appsflyer.com'
s.license = { :type => 'Proprietary', :text => 'Copyright 2018 AppsFlyer Ltd. All rights reserved.' }
s.author = { 'Amit Kremer' => 'amit-kremer93\@appsflyer.com', 'af-obodovskyi' => 'ivan.obodovskyi\@appsflyer.com', 'Veronica' => 'af-vero\@appsflyer.com', 'Moris' => 'morisgateno-appsflyer\@appsflyer.com', 'Amit' => 'al-af\@appsflyer.com'}
s.source = { :git => 'https://github.com/AppsFlyerSDK/appsflyer-apple-purchase-connector.git', :tag => s.version.to_s }
s.requires_arc = true
s.platform = :ios
s.ios.deployment_target = '12.0'
s.ios.frameworks = 'StoreKit'
s.default_subspecs = 'Main'
s.swift_version = '5.0'
s.subspec 'Main' do |ss|
ss.ios.dependency 'AppsFlyerFramework', '6.18.0'
ss.ios.preserve_paths = 'PurchaseConnector.xcframework'
ss.ios.vendored_frameworks = 'PurchaseConnector.xcframework'
ss.ios.resource_bundles = {'PurchaseConnector_Privacy' => ['Resources/PrivacyInfo.xcprivacy']}
end
s.subspec 'Dynamic' do |ss|
ss.ios.dependency 'AppsFlyerFramework/Dynamic','6.18.0'
ss.ios.preserve_paths = 'Dynamic/PurchaseConnector.xcframework'
ss.ios.vendored_frameworks = 'Dynamic/PurchaseConnector.xcframework'
end
s.subspec 'Strict' do |ss|
ss.ios.dependency 'AppsFlyerFramework/Strict','6.18.0'
ss.ios.preserve_paths = 'PurchaseConnector.xcframework'
ss.ios.vendored_frameworks = 'PurchaseConnector.xcframework'
ss.ios.resource_bundles = {'PurchaseConnector_Privacy' => ['Resources/PrivacyInfo.xcprivacy']}
end
end