MoviaBox/Podfile
2025-05-08 13:39:30 +08:00

38 lines
1.4 KiB
Ruby

# Uncomment the next line to define a global platform for your project
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '15.6'
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'
end
end
end
target 'MoviaBox' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
pod 'Moya' #网络框架
pod 'SnapKit' #布局
pod 'SmartCodable' #数据解析
pod 'YYKit' #工具类
pod 'MJRefresh' #刷新控件
pod 'Toast' #吐司提示
pod 'ZFPlayer/AVPlayer' #播放器
pod 'KTVHTTPCache' #视频缓存
pod 'HWPanModal' #底部弹出控制器
pod 'Kingfisher' #图片加载
pod 'EmptyStateKit' #空数据页面
pod 'ReachabilitySwift' #网络状态监控
pod 'WMZPageController' #分页控制器
pod 'SVProgressHUD' #HUD
pod 'TZImagePickerController' #相册
pod 'Adjust' # Adjust
end