Podfile 933 B

123456789101112131415161718192021222324252627282930
  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" # IM 消息
  10. pod 'TIMPush' # 离线推送
  11. # pod 'RTCRoomEngine' # 语音通话 被移到了 RTCRoomEngine
  12. pod 'AtomicXCore' # 直播间功能(会包含 RTCRoomEngine)
  13. pod 'DoraemonKit', :configurations => ['Debug']
  14. pod 'Adjust'
  15. end
  16. post_install do |installer|
  17. installer.pods_project.targets.each do |target|
  18. target.build_configurations.each do |config|
  19. # 强制所有库使用 iOS 15 作为最低版本
  20. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
  21. end
  22. end
  23. end