-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathAppsfireSDK.podspec
executable file
·18 lines (18 loc) · 1.04 KB
/
AppsfireSDK.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |spec|
spec.name = 'AppsfireSDK'
spec.version = '2.8.3'
spec.license = 'Commercial'
spec.summary = 'Appsfire iOS SDK'
spec.description = 'The Appsfire SDK for iOS enables you to natively monetize your applications and engage with your users.'
spec.homepage = 'http://www.mobilenetworkgroup.com/'
spec.author = { 'Appsfire' => 'http://www.mobilenetworkgroup.com/' }
spec.source = { :git => 'https://github.com/appsfire/Appsfire-iOS-SDK.git', :tag => '2.8.3' }
spec.platform = :ios, '6.0'
spec.source_files = 'AppsfireSDK/**/*.{h,m}'
spec.preserve_paths = 'AppsfireSDK/*.a'
spec.library = 'AppsfireSDK'
spec.xcconfig = { 'LIBRARY_SEARCH_PATHS' => '"$(PODS_ROOT)/AppsfireSDK/AppsfireSDK"' }
spec.weak_frameworks = 'AdSupport', 'StoreKit'
spec.frameworks = 'Accelerate', 'CoreGraphics', 'CoreText', 'Foundation', 'QuartzCore', 'Security', 'SystemConfiguration', 'MapKit', 'CoreLocation', 'UIKit'
spec.requires_arc = true
end