19 lines
467 B
Ruby
19 lines
467 B
Ruby
platform :ios, '15.0'
|
|
use_frameworks!
|
|
|
|
target 'TastePick' do
|
|
pod 'FirebaseAnalytics'
|
|
pod 'FirebaseCrashlytics'
|
|
pod 'IronSourceSDK', '9.2.0.0'
|
|
#pod 'IronSourceAdMobAdapter'
|
|
end
|
|
|
|
post_install do |installer|
|
|
installer.pods_project.targets.each do |target|
|
|
target.build_configurations.each do |config|
|
|
config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES'
|
|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
|
|
end
|
|
end
|
|
end
|