forked from braintree/braintree_ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
36 lines (30 loc) · 1.11 KB
/
Podfile
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
29
30
31
32
33
34
35
36
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
workspace 'Braintree.xcworkspace'
target 'Demo' do
platform :ios, '9.0'
pod 'AFNetworking'
pod 'CardIO'
pod 'NSURL+QueryDictionary', '~> 1.0'
pod 'PureLayout'
pod 'InAppSettingsKit'
pod 'iOS-Slide-Menu'
pod 'BraintreeDropIn', :podspec => 'BraintreeDropIn.podspec'
end
abstract_target 'Tests' do
pod 'Specta'
pod 'Expecta'
pod 'OCMock'
pod 'OHHTTPStubs'
target 'UnitTests'
target 'IntegrationTests'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == "BraintreeDropIn"
target.build_configurations.each do |config|
config.build_settings['HEADER_SEARCH_PATHS'] = '${PODS_ROOT}/../BraintreeCore/Public ${PODS_ROOT}/../BraintreeCard/Public ${PODS_ROOT}/../BraintreeUnionPay/Public ${PODS_ROOT}/../BraintreePaymentFlow/Public ${PODS_ROOT}/../BraintreePaymentFlow/Public/LocalPayment ${PODS_ROOT}/../BraintreePaymentFlow/Public/ThreeDSecure ${PODS_ROOT}/Headers/Private ${PODS_ROOT}/Headers/Private/BraintreeDropIn ${PODS_ROOT}/Headers/Public'
end
end
end
end