-
Notifications
You must be signed in to change notification settings - Fork 2
/
mParticle-Appboy.podspec
executable file
·44 lines (36 loc) · 1.62 KB
/
mParticle-Appboy.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
Pod::Spec.new do |s|
s.name = "mParticle-Appboy"
s.version = "8.0.7"
s.summary = "Appboy integration for mParticle"
s.description = <<-DESC
This is the Appboy integration for mParticle.
DESC
s.homepage = "https://www.mparticle.com"
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
s.author = { "mParticle" => "[email protected]" }
s.source = { :git => "https://github.com/mparticle-integrations/mparticle-apple-integration-appboy.git", :tag => s.version.to_s }
s.social_media_url = "https://twitter.com/mparticle"
s.ios.deployment_target = "9.0"
s.ios.source_files = 'mParticle-Appboy/*.{h,m,mm}'
s.ios.dependency 'mParticle-Apple-SDK/mParticle', '~> 8.0'
s.ios.frameworks = 'CoreTelephony', 'SystemConfiguration'
s.libraries = 'z'
s.ios.dependency 'Appboy-iOS-SDK', '~> 3.27'
s.ios.pod_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'
}
s.ios.user_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'
}
s.tvos.deployment_target = "9.0"
s.tvos.source_files = 'mParticle-Appboy/*.{h,m,mm}'
s.tvos.dependency 'mParticle-Apple-SDK/mParticle', '~> 8.0'
s.tvos.frameworks = 'SystemConfiguration'
s.tvos.dependency 'Appboy-tvOS-SDK', '~> 3.27'
s.tvos.pod_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=appletvsimulator*]' => 'arm64'
}
s.tvos.user_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=appletvsimulator*]' => 'arm64'
}
end