BeeReel/Podfile
2025-08-04 19:30:23 +08:00

39 lines
1.4 KiB
Ruby
Executable File

# 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'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
end
end
end
target 'beereel' do
use_frameworks!
pod 'SVProgressHUD' #HUD
pod 'Moya' #网络框架
pod 'SmartCodable' #数据解析
pod 'Kingfisher' #图片加载
pod 'SnapKit' #布局
pod 'Toast' #吐司提示
pod 'SJVideoPlayer' #播放器
pod 'SJMediaCacheServer' #播放器缓存
pod 'WMZPageController' #分页控制器
pod 'YYCategories'
pod 'YYText'
pod 'FSPagerView' #banner
pod 'MJRefresh' #刷新控件
pod 'HWPanModal' #底部弹出控制器
pod 'FDFullscreenPopGesture' #全屏手势返回
pod 'LYEmptyView'
pod 'ZLPhotoBrowser' #相册
pod 'Adjust' # Adjust
end