BeeReel/Podfile
2025-07-03 17:48:21 +08:00

34 lines
1.1 KiB
Ruby

# Uncomment the next line to define a global platform for your project
platform :ios, '15.0'
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 'BeeReel' do
use_frameworks!
pod 'SVProgressHUD' #HUD
pod 'Moya' #网络框架
pod 'SmartCodable' #数据解析
pod 'Kingfisher' #图片加载
pod 'SnapKit' #布局
pod 'Toast' #吐司提示
# pod 'YYKit' #工具类
pod 'SJVideoPlayer' #播放器
pod 'SJMediaCacheServer' #播放器缓存
pod 'WMZPageController' #分页控制器
pod 'YYCategories'
pod 'YYText'
pod 'FSPagerView' #banner
pod 'MJRefresh' #刷新控件
end