-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
44 lines (34 loc) · 764 Bytes
/
Podfile
File metadata and controls
44 lines (34 loc) · 764 Bytes
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
platform :ios, '10.0'
use_frameworks!
def common_pods_for_target
# Networking
pod 'Alamofire'
pod 'AlamofireImage'
# Firebase SDK
pod 'Firebase/Core'
pod 'Firebase/Auth'
pod 'Firebase/Messaging'
pod 'Firebase/Storage'
pod 'Firebase/Crashlytics'
pod 'Firebase/Analytics'
# Facebook SDK
pod 'FBSDKCoreKit'
pod 'FacebookCore'
pod 'FacebookLogin'
pod 'FacebookShare'
pod 'Cache', '5.2.0'
pod 'SwiftDate', '6.1.0'
pod 'Charts', '3.4.0'
end
target 'TrashOut-Prod' do
common_pods_for_target
end
target 'TrashOut-Stage' do
common_pods_for_target
end
target 'TrashOutTests' do
common_pods_for_target
end
target 'TrashOutUITests' do
common_pods_for_target
end