49 lines
1.7 KiB
Ruby
Executable File
49 lines
1.7 KiB
Ruby
Executable File
project 'BlockColor/BlockColor.xcodeproj'
|
|
platform :ios, '9.0'
|
|
|
|
target 'BlockColor' do
|
|
source 'https://github.com/CocoaPods/Specs.git'
|
|
source 'https://github.com/appodeal/CocoaPods.git'
|
|
|
|
pod 'SSZipArchive'
|
|
pod 'leveldb-library'
|
|
pod 'SDVersion', :git => 'https://github.com/MoNTE48/SDVersion'
|
|
pod 'libCurlPod', :git => 'https://github.com/MoNTE48/libCurlPod'
|
|
pod 'libOggVorbisPod', :git => 'https://github.com/MoNTE48/libOggVorbisPod'
|
|
|
|
# pod 'Appodeal/Interstitial', '2.5.7'
|
|
|
|
pod "Appodeal/AdColonyAdapter"
|
|
pod "Appodeal/AdExchangeAdapter"
|
|
pod "Appodeal/AppLovinAdapter"
|
|
pod "Appodeal/ChartboostAdapter"
|
|
pod "Appodeal/InMobiAdapter"
|
|
pod "Appodeal/IronSource"
|
|
pod "Appodeal/MintegralAdapter"
|
|
pod "Appodeal/MyTargetAdapter"
|
|
pod "Appodeal/SmaatoAdapter"
|
|
pod "Appodeal/StartAppAdapter"
|
|
pod "Appodeal/TapjoyAdapter"
|
|
pod "Appodeal/UnityAdapter"
|
|
pod "Appodeal/VungleAdapter"
|
|
pod "Appodeal/YandexAdapter"
|
|
|
|
pod 'PersonalizedAdConsent', :git => 'https://github.com/MoNTE48/consent-sdk-ios'
|
|
end
|
|
|
|
post_install do |installer|
|
|
installer.pods_project.targets.each do |target|
|
|
target.build_configurations.each do |config|
|
|
config.build_settings['GCC_FAST_MATH'] = 'YES'
|
|
config.build_settings['GCC_OPTIMIZATION_LEVEL'] = 'fast'
|
|
config.build_settings['GCC_SYMBOL_PRIVATE_EXTERN'] = 'YES'
|
|
config.build_settings['GCC_UNROLL_LOOPS'] = 'YES'
|
|
config.build_settings['ENABLE_BITCODE'] = 'NO'
|
|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
|
|
config.build_settings['OTHER_CFLAGS'] ||= ['-fvisibility=hidden', '-fdata-sections', '-ffunction-sections']
|
|
config.build_settings['OTHER_CPLUSPLUSFLAGS'] ||= ['$(OTHER_CFLAGS)']
|
|
config.build_settings['OTHER_LDFLAGS'] = ['-Wl,-dead_strip']
|
|
end
|
|
end
|
|
end
|