MoviaBox/Podfile
2025-04-21 18:27:31 +08:00

42 lines
1.3 KiB
Ruby

# Uncomment the next line to define a global platform for your project
platform :ios, '13.0'
#source 'https://github.com/CocoaPods/Specs'
source 'https://cdn.cocoapods.org/'
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"
end
end
installer.pods_project.build_configurations.each do |config|
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
end
end
target 'Thimra' 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' #分页控制器
end