SynthReel/Podfile
2025-12-11 11:17:46 +08:00

44 lines
1.1 KiB
Ruby

# Uncomment the next line to define a global platform for your project
platform :ios, '13.0'
source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
config.build_settings['EXCLUDED_ARCHITECTURES'] = 'i386'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
end
end
end
target 'SynthReel' do
use_frameworks!
pod 'YYCategories'
pod 'YYText'
pod 'Kingfisher'
pod 'SmartCodable','5.0.15'
pod 'Moya'
pod 'SVProgressHUD'
pod 'Toast'
pod 'JXSegmentedView'
pod 'JXPagingView/Paging'
pod 'FSPagerView'
pod 'JXPlayer', '~> 0.1.8'
pod 'MJRefresh'
pod 'collection-view-layouts/TagsLayout'
pod 'HWPanModal'
pod 'LYEmptyView'
pod 'ZLPhotoBrowser'
pod 'Adjust'
# # AdMob SDK
pod 'Google-Mobile-Ads-SDK'
#
# # AppLovin SDK
pod 'AppLovinSDK'
end