-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
55 lines (45 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
platform :ios, '13.0'
use_frameworks!
# ignore all warnings from all pods
inhibit_all_warnings!
def ios_app_pods
# UI
pod 'SnapKit'
pod 'SwiftValidators', :inhibit_warnings => true
pod 'UICountingLabel'
pod 'PanModal'
pod 'ShimmerSwift'
pod 'EmptyDataSet-Swift'
end
def api_pods
# Network
pod 'Alamofire', '~> 4.9.1'
pod 'AlamofireImage', '~> 3.6.0'
pod 'AlamofireNetworkActivityIndicator', '~> 2.4.0'
pod 'AlamofireObjectMapper', '~> 5.2.1'
# Data Parsing
pod 'SwiftyJSON'
pod 'ObjectMapper', :inhibit_warnings => true
# Security
pod 'Valet', '~> 3.2.8'
end
target 'Earth2' do
ios_app_pods
end
target 'Earth2Tests' do
ios_app_pods
end
target 'E2API' do
api_pods
end
target 'E2APITests' do
api_pods
end
post_install do |pi|
pi.pods_project.targets.each do |t|
t.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
config.build_settings['GCC_WARN_INHIBIT_ALL_WARNINGS'] = "YES"
end
end
end