MultiCraft/build/iOS/Podfile
2021-12-25 12:17:35 +01:00

43 lines
1.4 KiB
Ruby
Executable File

project 'MultiCraft/MultiCraft.xcodeproj'
platform :ios, '12.0'
use_frameworks!
install! 'cocoapods', :warn_for_multiple_pod_sources => false, :warn_for_unused_master_specs_repo => false
def appodeal
# source 'https://github.com/appodeal/CocoaPods.git'
ver = '2.10.3.1'
pod 'APDAdColonyAdapter', ver
pod 'APDAppLovinAdapter', ver
pod 'APDBidMachineAdapter', ver
pod 'APDIronSourceAdapter', ver
pod 'APDUnityAdapter', ver
pod 'APDVungleAdapter', ver
end
target 'MultiCraft' do
# source 'https://cdn.cocoapods.org/'
pod 'leveldb-library'
pod 'libvorbis'
appodeal
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['LLVM_LTO'] = 'YES'
config.build_settings['ENABLE_BITCODE'] = 'NO'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
config.build_settings['OTHER_CFLAGS'] = ['$(inherited)', '-fvisibility-inlines-hidden', '-fdata-sections', '-ffunction-sections', '-fno-unwind-tables', '-fno-asynchronous-unwind-tables']
config.build_settings['OTHER_CPLUSPLUSFLAGS'] = ['$(inherited)', '$(OTHER_CFLAGS)']
config.build_settings['OTHER_LDFLAGS'] = ['$(inherited)', '-Wl,-dead_strip']
end
end
end