Podfile 825 B

12345678910111213141516171819202122232425262728293031
  1. # Uncomment the next line to define a global platform for your project
  2. platform :ios, '13.0'
  3. inhibit_all_warnings!
  4. # 禁用 Bitcode
  5. post_install do |installer|
  6. installer.pods_project.targets.each do |target|
  7. target.build_configurations.each do |config|
  8. config.build_settings['ENABLE_BITCODE'] = 'NO'
  9. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
  10. end
  11. end
  12. end
  13. workspace 'uniPlugin'
  14. target 'HBuilder' do
  15. # Comment the next line if you don't want to use dynamic frameworks
  16. use_frameworks!
  17. pod 'MJExtension'
  18. pod 'OpenSSL', :git => 'http://106.54.229.239:3000/hello/OpenSSL.git'
  19. pod 'PBSDK', :path => '../../playBall'
  20. pod 'WQPlayBallLiveQiu', :path => '../WQPlayBallLiveQiu'
  21. pod 'LookinServer', :configurations => ['Debug']
  22. # Pods for HBuilder
  23. end