Skip to content

Instantly share code, notes, and snippets.

@theill
Last active December 31, 2015 21:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theill/8047432 to your computer and use it in GitHub Desktop.
Save theill/8047432 to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = 'UrbanAirship-iOS-SDK'
s.version = '2.1.0'
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' => 'support@urbanairship.com' }
s.source = { :git => 'https://github.com/urbanairship/ios-library.git', :tag => '2.1.0' }
# 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 = '**/asi-http-request/*', '**/json-framework/*', '**/google-toolbox-for-mac/*', '**/ZipFile-OC/*', '**/Reachability/*'
s.resources = 'Airship/**/*.{xib,jpg,png,bundle}'
s.requires_arc = false
s.libraries = 'z', 'sqlite3.0'
s.frameworks = 'CFNetwork', 'CoreGraphics', 'Foundation', 'MobileCoreServices',
'Security', 'SystemConfiguration', 'UIKit', 'CoreTelephony',
'StoreKit', 'CoreLocation', 'MapKit', 'AudioToolbox', 'MessageUI'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment