DailyView/podfile
2025-12-30 16:40:31 +08:00

47 lines
1.4 KiB
Plaintext

#source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '15.0'
use_frameworks!
target 'DailyView' do
# pod 'Kingfisher', '~> 8.0'
# pod 'AppLovinSDK'
pod 'FirebaseAnalytics'
pod 'FirebaseCrashlytics'
pod 'TPNiOS','6.5.33'
#TPN Adx SDK(necessary)
pod 'TPNMediationAdxSmartdigimktAdapter','6.5.40.0'
pod 'TPNMediationVungleAdapter','7.6.0.1'
pod 'TPNMediationUnityAdsAdapter','4.16.2.0'
pod 'TPNMediationBigoAdapter','5.0.0.0'
pod 'TPNMediationPubNativeAdapter','3.7.0.0'
pod 'TPNMediationPangleAdapter','7.7.0.4.0'
pod 'TPNMediationKwaiAdapter','1.2.3.0'
# pod 'TPNMediationFacebookAdapter','6.21.0.0'
#pod 'TPNMediationAdmobAdapter','12.12.0.0'
pod 'TPNMediationApplovinAdapter','13.5.0.0'
pod 'TPNMediationMintegralAdapter','7.7.9.0'
pod 'TPNMediationBidMachineAdapter','3.4.0.0'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_USER_SCRIPT_SANDBOXING'] = 'NO'
end
end
installer.aggregate_targets.each do |aggregate_target|
aggregate_target.user_project.native_targets.each do |native_target|
native_target.build_configurations.each do |config|
config.build_settings['ENABLE_USER_SCRIPT_SANDBOXING'] = 'NO'
end
end
aggregate_target.user_project.save
end
end