podfile 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
  2. platform :ios, '12.0'
  3. def commonPods
  4. pod 'MBProgressHUD', '~> 1.1.0'
  5. pod 'SDWebImage'
  6. pod 'SDWebImageWebPCoder'
  7. pod 'AFNetworking', '~> 4.0.1'
  8. pod 'Masonry', '~> 1.1.0'
  9. pod 'IQKeyboardManager', '~> 6.5.15'
  10. pod 'MJRefresh', '~> 3.7.5'
  11. pod 'TZImagePickerController'
  12. #因为修改不便, EaseIMKit改为手动导入
  13. #pod 'EaseIMKit', :git => 'https://github.com/cabbageTingZhang/easeui_ios.git'
  14. pod 'HyphenateChat', '~> 4.1.1'
  15. pod 'FMDB'
  16. #滚动视图
  17. pod 'JXCategoryView'
  18. #RTM
  19. pod 'AgoraRtm_iOS', '~> 1.5.1'
  20. #Adjust
  21. pod 'Adjust', '~> 5.2.0'
  22. # x.y.z 请填写具体的 RTC SDK 版本号,如 4.0.1 或 4.0.0.4
  23. # 可通过互动直播发版说明获取最新版本号
  24. # pod 'AgoraRtcEngine_iOS', '4.3.0'
  25. pod 'AgoraRtcEngine_Special_iOS', '4.1.1.30'
  26. # Swift 约束
  27. pod 'SnapKit'
  28. #svga
  29. pod 'SVGAPlayer-iOS', :git => 'https://github.com/cabbageTingZhang/SVGAPlayer-iOS.git'
  30. # 支持 OC & Swift 属性名查看,如果需要直接查看 imageView 的图片名称,可将 'SwiftAndNoHook' 替换成 'Swift'
  31. pod 'LookinServer', '1.2.8', :subspecs => ['Swift'], :configurations => ['Debug']
  32. # 越狱检查
  33. pod 'IOSSecuritySuite'
  34. # 腾讯IM
  35. pod 'TUIChat', :path => "./TUIKit/TUIChat"
  36. pod 'TUIConversation', :path => "./TUIKit/TUIConversation"
  37. pod 'TIMCommon', :path => "./TUIKit/TIMCommon"
  38. pod 'TUICore', :path => "./TUIKit/TUICore"
  39. # 腾讯推送
  40. pod 'TXIMSDK_Plus_iOS_XCFramework'
  41. pod 'TIMPush'
  42. pod 'YYKit', :git => 'http://8.134.139.102:10880/SuperC/YYKit.git', :branch => 'main'
  43. pod 'GCDWebServer', :configurations => ['Debug']
  44. pod 'DoraemonKit', :configurations => ['Debug']
  45. pod 'CocoaLumberjack', :configurations => ['Debug']
  46. pod 'NetworkEye', :configurations => ['Debug']
  47. end
  48. target 'MiMoLive' do
  49. # Comment the next line if you don't want to use dynamic frameworks
  50. use_frameworks!
  51. commonPods
  52. # 腾讯美颜
  53. # pod 'XMagic'
  54. # pod 'TencentEffect_S1-01/nobundle'
  55. # 火山美颜
  56. pod 'bytedEffect', :path => 'bytedEffect.podspec'
  57. # 第三方登录/分享等 主模块(必须)
  58. pod 'mob_sharesdk'
  59. # UI模块(非必须,需要用到ShareSDK提供的分享菜单栏和分享编辑页面需要以下1行)
  60. pod 'mob_sharesdk/ShareSDKUI'
  61. pod 'mob_sharesdk/ShareSDKPlatforms/Apple'
  62. pod 'mob_sharesdk/ShareSDKPlatforms/Facebook'
  63. pod 'mob_sharesdk/ShareSDKPlatforms/GooglePlus'
  64. pod 'mob_sharesdk/ShareSDKPlatforms/Instagram'
  65. pod 'mob_sharesdk/ShareSDKPlatforms/Line'
  66. pod 'mob_sharesdk/ShareSDKPlatforms/WhatsApp'
  67. pod 'mob_sharesdk/ShareSDKPlatforms/Twitter'
  68. pod 'GCDWebServer', :configurations => ['Debug']
  69. pod 'DoraemonKit', :configurations => ['Debug']
  70. pod 'CocoaLumberjack', :configurations => ['Debug']
  71. pod 'NetworkEye', :configurations => ['Debug']
  72. end
  73. target 'MiMoLive_Preview' do
  74. # Comment the next line if you don't want to use dynamic frameworks
  75. use_frameworks!
  76. commonPods
  77. # 火山美颜
  78. # pod 'bytedEffect', :path => 'bytedEffect.podspec'
  79. # # 第三方登录/分享等 主模块(必须)
  80. # pod 'mob_sharesdk'
  81. # # UI模块(非必须,需要用到ShareSDK提供的分享菜单栏和分享编辑页面需要以下1行)
  82. # pod 'mob_sharesdk/ShareSDKUI'
  83. # pod 'mob_sharesdk/ShareSDKPlatforms/Apple'
  84. # pod 'mob_sharesdk/ShareSDKPlatforms/Facebook'
  85. # pod 'mob_sharesdk/ShareSDKPlatforms/GooglePlus'
  86. # pod 'mob_sharesdk/ShareSDKPlatforms/Instagram'
  87. # pod 'mob_sharesdk/ShareSDKPlatforms/Line'
  88. # pod 'mob_sharesdk/ShareSDKPlatforms/WhatsApp'
  89. # pod 'mob_sharesdk/ShareSDKPlatforms/Twitter'
  90. end
  91. post_install do |installer|
  92. installer.pods_project.targets.each do |target|
  93. target.build_configurations.each do |config|
  94. # 强制所有库使用 iOS 12 作为最低版本
  95. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
  96. end
  97. end
  98. end