forked from braintree/braintree_ios
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Braintree.podspec
19 lines (17 loc) · 1.18 KB
/
Braintree.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'Braintree'
s.summary = 'The Braintree API helps businesses accept payments online.'
s.version = '2.2.5'
s.license = 'LICENSES'
s.author = { 'Braintree' => '[email protected]' }
s.homepage = 'https://braintreepayments.com/'
s.source = { :git => 'https://github.com/braintree/braintree_ios.git', :tag => s.version.to_s }
s.platform = :ios, '5.0'
s.requires_arc = true
s.source_files = 'venmo-touch/VenmoTouch.framework/Headers/*.h', 'braintree/BTEncryption/*.{h,m}', 'braintree/BTPayment/*.{h,m}'
s.preserve_paths = 'venmo-touch/VenmoTouch.framework/*'
s.frameworks = 'Foundation', 'UIKit', 'QuartzCore', 'CoreGraphics', 'Security', 'VenmoTouch', 'CoreTelephony', 'AdSupport', 'CoreText'
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/Braintree/venmo-touch"' }
s.public_header_files = 'venmo-touch/VenmoTouch.framework/Headers/*.h', 'braintree/BTEncryption/*.h', 'braintree/BTPayment/*.h'
s.resources = 'braintree/BraintreeResources.bundle', 'venmo-touch/VenmoTouchResources.bundle'
end