-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
44 lines (39 loc) · 799 Bytes
/
Podfile
File metadata and controls
44 lines (39 loc) · 799 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, '11.0'
inhibit_all_warnings!
use_frameworks!
def default_pods
# Reactive
pod 'RxSwift'
pod 'RxCocoa'
pod 'RxRelay'
pod 'RxFlow'
pod 'RxLocalizer'
pod 'NSObject+Rx'
pod 'RxGesture'
pod 'RxSwiftExt'
pod 'RxDataSources'
# Storages
pod 'KeychainAccess'
# Firebase
pod 'Firebase/Auth'
pod 'Firebase/Crashlytics'
# RxFirebase
pod 'RxFirebase/Auth'
# Utils
pod 'FieryCrucible'
# UI
pod 'SPStorkController'
pod 'IQKeyboardManagerSwift'
pod 'Reusable'
end
workspace 'LoginExample'
target 'LoginExample' do
default_pods
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
end
end
end