-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
34 lines (29 loc) · 815 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
platform :ios, '11.0'
# Pods for SimpleTodo
def appPods
use_frameworks!
pod 'Moya', '12.0.1'
pod 'Alamofire', '4.8.1'
pod 'SCLAlertView', :git => 'https://github.com/vikmeup/SCLAlertView-Swift.git'
pod 'OHHTTPStubs/Swift', '6.1.0'
end
target 'SimpleTodo' do
appPods
target 'SimpleTodoTests' do
inherit! :search_paths
appPods
end
target 'SimpleTodoUITests' do
inherit! :search_paths
appPods
end
# Disable Code Coverage for Pods projects
post_install do |installer_representation|
installer_representation.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['CLANG_ENABLE_CODE_COVERAGE'] = 'NO'
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
end
end
end
end