-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathmParticle-AppsFlyer.podspec
More file actions
36 lines (29 loc) · 1.53 KB
/
mParticle-AppsFlyer.podspec
File metadata and controls
36 lines (29 loc) · 1.53 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
Pod::Spec.new do |s|
s.name = "mParticle-AppsFlyer"
s.version = "8.4.7"
s.summary = "AppsFlyer integration for mParticle"
s.description = <<-DESC
This is the AppsFlyer integration for mParticle.
DESC
s.homepage = "https://www.mparticle.com"
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
s.author = { "mParticle" => "support@mparticle.com" }
s.source = { :git => "https://github.com/mparticle-integrations/mparticle-apple-integration-appsflyer.git", :tag => "v" + s.version.to_s }
s.social_media_url = "https://twitter.com/mparticle"
s.swift_versions = ["5.3"]
s.static_framework = true
s.ios.deployment_target = "12.0"
s.default_subspec = 'Standard'
s.subspec 'Standard' do |ss|
ss.ios.source_files = 'Sources/**/*.{h,m,mm}'
ss.ios.resource_bundles = { 'mParticle-AppsFlyer-Privacy' => ['Sources/mParticle-AppsFlyer/PrivacyInfo.xcprivacy'] }
ss.ios.dependency 'AppsFlyerFramework', '~> 6.16'
ss.ios.dependency 'mParticle-Apple-SDK/mParticle', '~> 8.19'
end
s.subspec 'NoLocation' do |ss|
ss.ios.source_files = 'Sources/**/*.{h,m,mm}'
ss.ios.resource_bundles = { 'mParticle-AppsFlyer-Privacy' => ['Sources/mParticle-AppsFlyer/PrivacyInfo.xcprivacy'] }
ss.ios.dependency 'AppsFlyerFramework', '~> 6.16'
ss.ios.dependency 'mParticle-Apple-SDK/mParticleNoLocation', '~> 8.19'
end
end