-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathPodfile
More file actions
34 lines (28 loc) · 893 Bytes
/
Podfile
File metadata and controls
34 lines (28 loc) · 893 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
# Uncomment the next line to define a global platform for your project
platform :ios, '10.0'
def pods_definition
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
pod 'SnapKit', '5.0.1'
pod 'Firebase/Functions'
pod 'Firebase/Messaging'
pod 'Firebase/Auth'
pod 'Firebase/RemoteConfig'
pod 'PromiseKit', '~> 6.13'
pod 'Moya', '~> 14.0'
pod 'ZIPFoundation', '~> 0.9'
pod 'KeychainAccess', '~> 4.2.0'
pod 'TrustKit', '~> 1.6.5'
pod 'Siren', '~> 5.4.0'
pod 'RealmSwift', '~> 5.0.0'
pod 'SwiftProtobuf', '~> 1.0'
pod 'DBDebugToolkit', :configurations => ['Stage', 'StageDebug', 'LiveDebug']
end
target 'safesafe' do
pods_definition
end
post_install do |installer|
installer.pods_project.build_configurations.each do |config|
config.build_settings['CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER'] = 'NO'
end
end