23 lines
546 B
Ruby
23 lines
546 B
Ruby
# Uncomment the next line to define a global platform for your project
|
|
platform :ios, '13.0'
|
|
|
|
use_frameworks!
|
|
|
|
target 'Earthquake Network' do
|
|
pod 'FirebaseMessaging'
|
|
pod 'FirebaseCrashlytics'
|
|
pod 'Google-Mobile-Ads-SDK'
|
|
pod 'FBSDKCoreKit'
|
|
pod 'DZNEmptyDataSet'
|
|
pod 'Solar'
|
|
end
|
|
|
|
# Force Deployment Target to 13.0 in order to silece Xcode warnings
|
|
post_install do |pi|
|
|
pi.pods_project.targets.each do |t|
|
|
t.build_configurations.each do |config|
|
|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
|
|
end
|
|
end
|
|
end
|