forked from braintree/braintree_ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
32 lines (27 loc) · 745 Bytes
/
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
source 'https://cdn.cocoapods.org/'
workspace 'Braintree.xcworkspace'
platform :ios, '14.0'
use_frameworks!
inhibit_all_warnings!
target 'Demo' do
project 'Demo/Demo'
pod 'InAppSettingsKit'
end
abstract_target 'Tests' do
pod 'OCMock'
pod 'OHHTTPStubs/Swift'
pod 'xcbeautify'
target 'IntegrationTests'
target 'BraintreeCoreTests'
end
# Workaround required for Xcode 14.3
# https://stackoverflow.com/questions/75574268/missing-file-libarclite-iphoneos-a-xcode-14-3
post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '14.0'
end
end
end
end