12345678910111213141516171819202122232425262728293031 |
- # 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'
- #pod 'PBSDK', :path => '../PBSDK'
- pod 'PBSDK', :path => '../../playBall'
- #pod 'PBSDK', :git => 'http://106.54.229.239:3000/chenmin/playBall.git', :commit => '4d1ae0e'
- pod 'WQPlayBallLiveQiu', :path => '../WQPlayBallLiveQiu'
- # Pods for HBuilder
- end
|