-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
75 lines (57 loc) · 1.4 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
source 'https://github.com/CocoaPods/Specs.git'
# Uncomment the next line to define a global platform for your project
platform :ios, '13.0'
workspace 'CampApp.xcworkspace'
target 'CampApp' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
pod 'GoogleUtilities'
# Pods for CampApp
pod 'XCoordinator'
pod 'Localize'
pod 'Carbon'
pod 'SnapKit'
#firebase
pod 'FirebaseFirestore'
pod 'FirebaseCore'
pod 'FirebaseStorage'
pod 'SPPermissions/LocationWhenInUse'
pod 'SDWebImage'
pod 'AttributedStringBuilder'
pod 'ActionKit'
pod 'FloatingPanel'
pod 'GooglePlaces'
pod 'FirebaseFirestoreSwift'
pod 'Firebase/Analytics'
pod 'Firebase/Auth'
pod 'GeoFire/Utils'
pod 'FirebaseUI/Storage'
end
target 'YTUI' do
use_frameworks!
project 'UI/YTUI.xcodeproj'
pod 'GoogleUtilities'
pod 'XCoordinator'
pod 'Localize'
pod 'Carbon'
pod 'SnapKit'
pod 'ActionKit'
pod 'SPPermissions/LocationWhenInUse'
pod 'SDWebImage'
pod 'AttributedStringBuilder'
pod 'FirebaseUI/Storage'
end
target 'Common' do
use_frameworks!
project 'Common/Common.xcodeproj'
pod 'Localize'
end
target 'YTNetwork' do
use_frameworks!
project 'YTNetwork/YTNetwork.xcodeproj'
end
post_install do |installer|
installer.pods_project.build_configurations.each do |config|
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
end
end