forked from ILGOB/It-sME
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
69 lines (55 loc) · 1.67 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
# Uncomment the next line to define a global platform for your project
platform :ios, '15.0'
target 'ItsME' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for ItsME
pod 'RxSwift', '6.5.0'
pod 'RxCocoa', '6.5.0'
pod 'SnapKit', '5.6.0'
pod 'RxKakaoSDK', '2.14.0'
pod 'Firebase/Analytics', '10.3.0' # Google Analytics
pod 'FirebaseAuth', '10.3.0'
pod 'FirebaseDatabase', '10.3.0' #Realtime Database
pod 'FirebaseStorage', '10.3.0' # Cloud Storage
pod 'Then', '~> 3.0.0'
pod 'UITextView+Placeholder', '~> 1.4.0'
pod 'SFSafeSymbols', '~> 4.1.1'
pod 'Keychaining', '0.9.0'
pod 'Swinject', '2.8.3'
pod 'SwiftLint'
target 'ItsMETests' do
inherit! :search_paths
# Pods for testing
pod 'RxBlocking', '6.5.0'
pod 'RxTest', '6.5.0'
end
target 'ItsMEUITests' do
# Pods for testing
end
end
target 'ItsMEUtil' do
use_frameworks!
pod 'RxSwift', '6.5.0'
pod 'RxCocoa', '6.5.0'
pod 'SwiftJWT', '~> 3.6.2'
pod 'Firebase/Analytics', '10.3.0' # Google Analytics
pod 'FirebaseAuth', '10.3.0'
pod 'FirebaseDatabase', '10.3.0' #Realtime Database
pod 'FirebaseStorage', '10.3.0' # Cloud Storage
target 'ItsMEUtilTests' do
inherit! :complete
end
end
post_install do |installer|
# Configure the Pods project
installer.pods_project.build_configurations.each do |config|
config.build_settings['DEAD_CODE_STRIPPING'] = 'YES'
end
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
end
end
end