ios-unity/Podfile
2023-08-03 13:24:53 +08:00

23 lines
627 B
Ruby

platform :ios, '12.0'
use_frameworks!
post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
end
end
end
end
target 'Unity-iPhone' do
pod 'GoogleSignIn', :path => '/Users/zhl/Downloads/sourcecode/google/GoogleSignIn-iOS/'
pod 'TikTokOpenSDK', '~> 5.0.14'
pod 'FBSDKCoreKit'
pod 'FBSDKLoginKit'
pod 'FBSDKShareKit'
pod 'FirebaseAnalytics'
pod 'AppsFlyerFramework', '6.9.1'
end