Files
POCloud-iOS/Podfile
Patrick McDonagh 80f2241604 Adds firebase auth
2018-06-01 13:36:16 -05:00

36 lines
1.0 KiB
Ruby

# Uncomment the next line to define a global platform for your project
platform :ios, '10.0'
target 'pocloud' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for pocloud
pod 'SwiftyJSON'
pod 'SVProgressHUD'
pod 'ChameleonFramework'
pod 'Alamofire'
pod 'RealmSwift'
pod 'PromiseKit/Alamofire'
pod 'Kingfisher'
pod 'SwiftChart'
pod 'Firebase/Core'
pod 'Firebase/Database'
pod 'Firebase/Auth'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings.delete('CODE_SIGNING_ALLOWED')
config.build_settings.delete('CODE_SIGNING_REQUIRED')
config.build_settings['CLANG_WARN_DOCUMENTATION_COMMENTS'] = 'NO'
end
end
installer.pods_project.build_configurations.each do |config|
config.build_settings.delete('CODE_SIGNING_ALLOWED')
config.build_settings.delete('CODE_SIGNING_REQUIRED')
end
end