Podfile 794 B

1234567891011121314151617181920212223242526272829
  1. # Uncomment the next line to define a global platform for your project
  2. platform :ios, '12.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', :git => 'http://106.54.229.239:3000/chenmin/playBall.git',:commit => 'a303305'
  20. pod 'WQPlayBallLiveQiu', :path => '../WQPlayBallLiveQiu'
  21. pod 'SDWebImage', '5.10.4'
  22. # Pods for HBuilder
  23. end