# Uncomment the next line to define a global platform for your project platform :ios, '13.0' inhibit_all_warnings! # 禁用 Bitcode 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['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0' end end end workspace 'YOLiveSport' target 'HBuilder' do use_frameworks! pod 'Masonry' pod 'MJExtension' pod 'OpenSSL', :git => 'https://github.com/isee15/OpenSSL.git' #framework依懒,确定是否是最新的framework pod 'PBSDK', :path => '../PBSDK' #源代码依懒 #pod 'PBSDK', :path => '../../playBall' pod 'WQPlayBallLiveQiu', :path => '../WQPlayBallLiveQiu' # Pods for HBuilder end