-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
35 lines (32 loc) · 948 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
33
34
35
platform :ios, '10.0'
use_frameworks!
inhibit_all_warnings!
target "URLRemote" do
pod 'Alamofire', '~> 4.0'
pod 'MBProgressHUD', '~> 1.0'
pod 'Bond', '~> 6.0'
pod 'Fabric', '~> 1.7'
pod 'Crashlytics', '~> 3.9'
pod 'Firebase/Core', '~> 4.0'
pod 'Firebase/Database', '~> 4.0'
pod 'Firebase/Auth', '~> 4.0'
pod 'Material', '~> 2.12'
pod 'Motion', '~> 1.0'
pod 'ObjectMapper', '~> 3.0'
pod 'OHHTTPStubs/Swift', '~> 6.0'
target "URLRemoteTests" do
inherit! :search_paths
pod 'Quick'
pod 'Nimble'
end
end
# 1. Setting Swift version to 3
# 2. Code Coverage disable for Pods projects
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
#config.build_settings['SWIFT_VERSION'] = '3.0'
config.build_settings['CLANG_ENABLE_CODE_COVERAGE'] = 'NO'
end
end
end