-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
36 lines (30 loc) · 930 Bytes
/
Podfile
File metadata and controls
36 lines (30 loc) · 930 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
platform :ios, '10.0'
use_frameworks!
target 'UtilitiesReport' do
pod 'RealmSwift', '~> 3.14'
pod 'IQKeyboardManagerSwift', '~> 6.2'
pod 'KRProgressHUD', '~> 3.4'
pod 'Sourcery', '~> 0.16'
pod 'SwiftLint', '~> 0.32'
pod 'Alamofire', '~> 4.8'
pod 'Stencil', :git => 'https://github.com/stencilproject/Stencil.git'
pod 'Firebase/Core'
pod 'Firebase/Auth'
pod 'Firebase/Firestore'
pod 'Firebase/Database'
pod 'Firebase/MLVision'
pod 'Firebase/MLVisionTextModel'
pod 'Hero'
pod 'NVActivityIndicatorView'
target 'UtilitiesReportTests' do
inherit! :complete
pod 'Firebase'
end
end
post_install do |installer_representation|
installer_representation.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES'] = '$(inherited)'
end
end
end