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 'uniPlugin'
- target 'HBuilder' do
- # Comment the next line if you don't want to use dynamic frameworks
- use_frameworks!
-
- pod 'MJExtension'
- pod 'OpenSSL', :git => 'http://106.54.229.239:3000/hello/OpenSSL.git'
- pod 'PBSDK', :path => '../../playBall'
- pod 'WQPlayBallLiveQiu', :path => '../WQPlayBallLiveQiu'
- pod 'LookinServer', :configurations => ['Debug']
- # Pods for HBuilder
- end
|