source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git' platform :ios, '12.0' def commonPods pod 'MBProgressHUD', '~> 1.1.0' pod 'SDWebImage' pod 'SDWebImageWebPCoder' pod 'AFNetworking', '~> 4.0.1' pod 'Masonry', '~> 1.1.0' pod 'IQKeyboardManager', '~> 6.5.15' pod 'MJRefresh', '~> 3.7.5' pod 'TZImagePickerController' #因为修改不便, EaseIMKit改为手动导入 #pod 'EaseIMKit', :git => 'https://github.com/cabbageTingZhang/easeui_ios.git' pod 'HyphenateChat', '~> 4.1.1' pod 'FMDB' #滚动视图 pod 'JXCategoryView' #RTM pod 'AgoraRtm_iOS', '~> 1.5.1' #Adjust pod 'Adjust', '~> 5.2.0' # x.y.z 请填写具体的 RTC SDK 版本号,如 4.0.1 或 4.0.0.4 # 可通过互动直播发版说明获取最新版本号 # pod 'AgoraRtcEngine_iOS', '4.3.0' pod 'AgoraRtcEngine_Special_iOS', '4.1.1.30' # Swift 约束 pod 'SnapKit' #svga pod 'SVGAPlayer-iOS', :git => 'https://github.com/cabbageTingZhang/SVGAPlayer-iOS.git' # 支持 OC & Swift 属性名查看,如果需要直接查看 imageView 的图片名称,可将 'SwiftAndNoHook' 替换成 'Swift' pod 'LookinServer', '1.2.8', :subspecs => ['Swift'], :configurations => ['Debug'] # 越狱检查 pod 'IOSSecuritySuite' # 腾讯IM pod 'TUIChat', :path => "./TUIKit/TUIChat" pod 'TUIConversation', :path => "./TUIKit/TUIConversation" pod 'TIMCommon', :path => "./TUIKit/TIMCommon" pod 'TUICore', :path => "./TUIKit/TUICore" # 腾讯推送 pod 'TXIMSDK_Plus_iOS_XCFramework' pod 'TIMPush' pod 'YYKit', :git => 'http://8.134.139.102:10880/SuperC/YYKit.git', :branch => 'main' pod 'GCDWebServer', :configurations => ['Debug'] pod 'DoraemonKit', :configurations => ['Debug'] pod 'CocoaLumberjack', :configurations => ['Debug'] pod 'NetworkEye', :configurations => ['Debug'] end target 'MiMoLive' do # Comment the next line if you don't want to use dynamic frameworks use_frameworks! commonPods # 腾讯美颜 # pod 'XMagic' # pod 'TencentEffect_S1-01/nobundle' # 火山美颜 pod 'bytedEffect', :path => 'bytedEffect.podspec' # 第三方登录/分享等 主模块(必须) pod 'mob_sharesdk' # UI模块(非必须,需要用到ShareSDK提供的分享菜单栏和分享编辑页面需要以下1行) pod 'mob_sharesdk/ShareSDKUI' pod 'mob_sharesdk/ShareSDKPlatforms/Apple' pod 'mob_sharesdk/ShareSDKPlatforms/Facebook' pod 'mob_sharesdk/ShareSDKPlatforms/GooglePlus' pod 'mob_sharesdk/ShareSDKPlatforms/Instagram' pod 'mob_sharesdk/ShareSDKPlatforms/Line' pod 'mob_sharesdk/ShareSDKPlatforms/WhatsApp' pod 'mob_sharesdk/ShareSDKPlatforms/Twitter' pod 'GCDWebServer', :configurations => ['Debug'] pod 'DoraemonKit', :configurations => ['Debug'] pod 'CocoaLumberjack', :configurations => ['Debug'] pod 'NetworkEye', :configurations => ['Debug'] end target 'MiMoLive_Preview' do # Comment the next line if you don't want to use dynamic frameworks use_frameworks! commonPods # 火山美颜 # pod 'bytedEffect', :path => 'bytedEffect.podspec' # # 第三方登录/分享等 主模块(必须) # pod 'mob_sharesdk' # # UI模块(非必须,需要用到ShareSDK提供的分享菜单栏和分享编辑页面需要以下1行) # pod 'mob_sharesdk/ShareSDKUI' # pod 'mob_sharesdk/ShareSDKPlatforms/Apple' # pod 'mob_sharesdk/ShareSDKPlatforms/Facebook' # pod 'mob_sharesdk/ShareSDKPlatforms/GooglePlus' # pod 'mob_sharesdk/ShareSDKPlatforms/Instagram' # pod 'mob_sharesdk/ShareSDKPlatforms/Line' # pod 'mob_sharesdk/ShareSDKPlatforms/WhatsApp' # pod 'mob_sharesdk/ShareSDKPlatforms/Twitter' end post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| # 强制所有库使用 iOS 12 作为最低版本 config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0' end end end