-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
77 lines (65 loc) · 1.66 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
platform :ios, '13.0'
use_frameworks!
# ignore all warnings from all pods
inhibit_all_warnings!
def app_pods
# UI
pod 'EmptyDataSet-Swift'
pod 'SnapKit'
pod 'SwiftValidators', :inhibit_warnings => true
pod 'Presentr'
pod 'QRCode', :git => 'https://github.com/andrewcampoli/QRCode.git', :inhibit_warnings => true
pod 'ShimmerSwift'
pod 'TOCropViewController'
pod 'PickerView'
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', '5.0.0'
pod 'ObjectMapper', :inhibit_warnings => true
# Security
pod 'Valet', '3.2.8'
end
def shared_pods
# Dev Tools
pod 'SwiftLint'
pod 'Sentry'
end
target 'RaceSync' do
app_pods
shared_pods
end
target 'RaceSyncTests' do
app_pods
shared_pods
end
target 'RaceSyncAPI' do
api_pods
shared_pods
end
target 'RaceSyncAPITests' do
api_pods
shared_pods
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
end
end
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
# config.build_settings["DEVELOPMENT_TEAM"] = "TJ4PB66YQS"
end
end
end
end