Podfile 785 B

1234567891011121314151617181920212223242526272829
  1. # Uncomment the next line to define a global platform for your project
  2. platform :ios, '15.0'
  3. source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
  4. target 'Gami' do
  5. # Comment the next line if you don't want to use dynamic frameworks
  6. use_frameworks!
  7. # # 腾讯IM
  8. pod 'TIMCommon', :path => "./ThirdParty/TUIKit/TIMCommon"
  9. pod 'TUIChat', :path => "./ThirdParty/TUIKit/TUIChat"
  10. pod 'TIMPush'
  11. pod 'RTCRoomEngine'
  12. pod 'DoraemonKit', :configurations => ['Debug']
  13. pod 'Adjust'
  14. end
  15. post_install do |installer|
  16. installer.pods_project.targets.each do |target|
  17. target.build_configurations.each do |config|
  18. # 强制所有库使用 iOS 15 作为最低版本
  19. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
  20. end
  21. end
  22. end