forked from gimbalinc/airship-adapter-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGimbalAirshipAdapter.podspec
21 lines (20 loc) · 1.06 KB
/
GimbalAirshipAdapter.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.version = "4.0.0"
s.name = "GimbalAirshipAdapter"
s.summary = "An adapter for integrating Gimbal place events with Airship."
s.documentation_url = "https://github.com/gimbalinc/airship-adapter-ios"
s.homepage = "https://infillion.com/commerce/gimbal/"
s.author = { "Gimbal" => "support@infillion.com" }
s.license = { :type => "Apache License, Version 2.0", :file => "LICENSE" }
s.source = { :git => "https://github.com/gimbalinc/airship-adapter-ios.git", :tag => s.version.to_s }
s.ios.deployment_target = "14.0"
s.swift_version = "5.0"
s.source_files = "Pod/Classes/*"
s.requires_arc = true
s.dependency "GimbalXCFramework", "~> 2.94.0"
s.dependency "Airship", "= 18.13.0"
s.pod_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386'
}
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
end