-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
54 lines (44 loc) · 863 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Uncomment the next line to define a global platform for your project
platform :ios, '13.0'
# ignore all warnings from all pods
inhibit_all_warnings!
# Basic
def basic_pods
pod 'Down'
pod 'Promises'
pod 'SwiftyBeaver'
# AWS
pod 'AWSCore'
pod 'AWSAppSync'
pod 'AWSMobileClient'
pod 'AWSSNS'
end
# Testing
def test_pods
pod 'SnapshotTesting', '~> 1.9'
end
# # UITesting
def ui_test_pods
pod 'Swifter', '~> 1.5.0'
end
target 'Adequate' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for Adequate
basic_pods
end
# target 'NotificationService' do
# use_frameworks!
# end
#target 'DealWidget' do
# use_frameworks!
#end
target 'AdequateTests' do
use_frameworks!
basic_pods
test_pods
end
target 'AdequateUITests' do
use_frameworks!
ui_test_pods
end