forked from paypal/PayPal-iOS-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PayPal-iOS-SDK.podspec
28 lines (25 loc) · 1.45 KB
/
PayPal-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
23
24
25
26
27
28
Pod::Spec.new do |spec|
spec.name = 'PayPal-iOS-SDK'
spec.version = '2.16.1'
spec.license = { type: 'BSD', file: 'LICENSE' }
spec.homepage = 'https://developer.paypal.com/webapps/developer/docs/integration/mobile/mobile-sdk-overview/'
spec.authors = { 'PayPal' => '[email protected]' }
spec.summary = 'Accept credit cards and PayPal in your iOS app.'
spec.description = 'The PayPal iOS SDK provides a software library that makes it easy for an iOS developer to accept both credit cards and PayPal directly within their mobile app.'
spec.source = { :git => 'https://github.com/paypal/PayPal-iOS-SDK.git', :tag => "#{spec.version}" }
spec.platform = :ios, '6.1'
spec.ios.deployment_target = '6.1'
spec.requires_arc = false
spec.default_subspec = 'Core', 'CardIO'
spec.subspec 'Core' do |subspec|
subspec.source_files = [ 'PayPalMobile/*.h' ]
subspec.preserve_path = [ 'PayPalMobile/*.a' ]
subspec.frameworks = 'Accelerate', 'AudioToolbox', 'AVFoundation', 'CoreLocation', 'CoreMedia', 'MessageUI', 'MobileCoreServices', 'SystemConfiguration'
subspec.vendored_libraries = [ 'PayPalMobile/libPayPalMobile.a' ]
subspec.compiler_flags = '-fmodules', '-fmodules-autolink'
subspec.xcconfig = { 'OTHER_LDFLAGS' => '-lc++ -ObjC'}
end
spec.subspec 'CardIO' do |subspec|
subspec.dependency 'CardIO', '~> 5.4.1'
end
end