forked from flyinghead/mobile-flight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
39 lines (33 loc) · 1 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
37
38
platform :ios, '8.0'
use_frameworks!
plugin 'cocoapods-acknowledgements', :settings_bundle => true
def common_pods
pod 'DownPicker'
pod 'Charts', '~> 3.0.3'
pod 'SVProgressHUD'
pod 'SwiftSVG', '~> 2.0'
pod 'Firebase/Core'
pod 'Fabric'
pod 'Crashlytics'
pod 'CocoaAsyncSocket'
#pod "InAppSettingsKit"
end
target 'MobileFlight' do
post_install do | installer |
# Fix for "does not contain bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target. for architecture arm64"
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end
common_pods
end
target 'KIFTests' do
pod 'KIF', '~> 3.0', :configurations => ['Debug']
pod 'KIF/IdentifierTests', :configurations => ['Debug']
common_pods
end
target 'MobileFlightTests' do
common_pods
end