forked from urbanairship/ios-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUrbanAirship-iOS-SDK.podspec
22 lines (17 loc) · 1.09 KB
/
UrbanAirship-iOS-SDK.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.version = "8.1.6"
s.name = "UrbanAirship-iOS-SDK"
s.summary = "Urban Airship iOS SDK"
s.documentation_url = "http://docs.urbanairship.com/platform/ios.html"
s.homepage = "https://www.urbanairship.com"
s.author = { "Urban Airship" => "[email protected]" }
s.license = { :type => 'BSD', :file => 'LICENSE' }
s.source = { :git => "https://github.com/urbanairship/ios-library.git", :tag => s.version.to_s }
s.module_name = "AirshipKit"
s.ios.deployment_target = "8.0"
s.requires_arc = true
s.ios.resource_bundle = { 'AirshipResources' => ['AirshipKit/AirshipResources/*'] }
s.ios.source_files = 'AirshipKit/AirshipKit/*.{h,m,mm}'
s.libraries = 'z', 'sqlite3'
s.ios.frameworks = 'UserNotifications', 'CFNetwork', 'CoreGraphics', 'Foundation', 'MobileCoreServices', 'Security', 'SystemConfiguration', 'UIKit', 'CoreTelephony', 'CoreLocation', 'CoreData'
end