Podfile 785 B

12345678910111213141516171819202122232425262728
  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 'TXIMSDK_Plus_iOS_XCFramework'
  12. pod 'DoraemonKit', :configurations => ['Debug']
  13. end
  14. post_install do |installer|
  15. installer.pods_project.targets.each do |target|
  16. target.build_configurations.each do |config|
  17. # 强制所有库使用 iOS 15 作为最低版本
  18. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
  19. end
  20. end
  21. end