Podfile 845 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 'YOLiveSport'
  14. target 'HBuilder' do
  15. use_frameworks!
  16. pod 'Masonry'
  17. pod 'MJExtension'
  18. pod 'OpenSSL', :git => 'https://github.com/isee15/OpenSSL.git'
  19. #pod 'PBSDK', :path => '../PBSDK'
  20. pod 'PBSDK', :path => '../../playBall'
  21. #pod 'PBSDK', :git => 'http://106.54.229.239:3000/chenmin/playBall.git', :commit => '4d1ae0e'
  22. pod 'WQPlayBallLiveQiu', :path => '../WQPlayBallLiveQiu'
  23. # Pods for HBuilder
  24. end