ios-unity/Podfile
2023-07-20 15:28:40 +08:00

22 lines
591 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'
end