Last active
October 13, 2015 08:07
-
-
Save HBehrens/4164798 to your computer and use it in GitHub Desktop.
CocoaPods Spec for UrbanAirship
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = 'UrbanAirship-iOS-SDK' | |
s.version = '1.3.5.a' | |
s.license = 'BSD' | |
s.platform = :ios | |
s.summary = 'A simple way to integrate Urban Airship services into your iOS applications.' | |
s.homepage = 'https://github.com/urbanairship/ios-library' | |
s.author = { 'Urban Airship' => '[email protected]' } | |
s.source = { :git => 'https://github.com/HBehrens/ios-library.git', :commit => '038d1bbbed19d5d0459a87e1fce47cdd87b7ddbc' } | |
# Airship ships both UA-prefixed ASI and SBJson, as well as un-prefixed | |
# versions that are no longer used in the .xcodeproj. | |
s.source_files = 'Airship/**/*.{h,m,c}' | |
s.exclude_files = '**/{google-toolbox-for-mac,json-framework,asi-http-request}/**/*' | |
s.dependency 'ZipArchive', '1.1.0' | |
s.dependency 'Reachability', '3.1.0' | |
s.dependency 'ASIHTTPRequest', '1.8.1' | |
s.dependency 'SBJson', '3.1.1' | |
s.libraries = 'z', 'sqlite3.0' | |
s.frameworks = 'CFNetwork', 'CoreGraphics', 'Foundation', 'MobileCoreServices', | |
'Security', 'SystemConfiguration', 'UIKit', 'CoreTelephony', | |
'StoreKit', 'CoreLocation', 'MapKit' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment