-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
44 lines (40 loc) · 913 Bytes
/
Podfile
File metadata and controls
44 lines (40 loc) · 913 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
platform :ios, '11'
inhibit_all_warnings!
use_frameworks!
target 'AlgoliaFirebaseSample' do
pod 'Firebase/Database'
pod 'Firebase/Storage'
pod 'Firebase/Auth'
pod 'Firebase/Crash'
pod 'Firebase/Messaging'
pod 'Firebase/Performance'
pod 'FacebookCore'
pod 'FacebookLogin'
pod 'FacebookShare'
pod 'Alertift', '~> 3.0'
pod 'RxSwift', '~> 4.0'
pod 'RxCocoa', '~> 4.0'
pod 'RxOptional'
pod 'DateToolsSwift'
pod 'RxKeyboard'
pod 'Haptica'
pod 'Instantiate'
pod 'InstantiateStandard'
pod 'ImageStore'
pod 'Salada'
pod 'Pick'
pod 'I'
pod 'SwiftRegExp'
pod 'Algent'
pod 'Tsuchi'
end
post_install do |installer|
swift3_pods = %w(SwiftRegExp)
installer.pods_project.targets.each do |target|
if swift3_pods.include?(target.name)
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.2'
end
end
end
end