| 123456789101112131415161718192021222324252627282930 |
- # Uncomment the next line to define a global platform for your project
- platform :ios, '15.0'
- source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
- target 'Gami' do
- # Comment the next line if you don't want to use dynamic frameworks
- use_frameworks!
- # # 腾讯IM
- pod 'TIMCommon', :path => "./ThirdParty/TUIKit/TIMCommon" # 公共组件
- pod 'TUIChat', :path => "./ThirdParty/TUIKit/TUIChat" # IM 消息
- pod 'TIMPush' # 离线推送
- # pod 'RTCRoomEngine' # 语音通话 被移到了 RTCRoomEngine
- pod 'AtomicXCore' # 直播间功能(会包含 RTCRoomEngine)
-
- pod 'DoraemonKit', :configurations => ['Debug']
-
- pod 'Adjust'
- end
- post_install do |installer|
- installer.pods_project.targets.each do |target|
- target.build_configurations.each do |config|
- # 强制所有库使用 iOS 15 作为最低版本
- config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
- end
- end
- end
|