podfile 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
  2. platform :ios, '12.0'
  3. target 'MiMoLive' do
  4. # Comment the next line if you don't want to use dynamic frameworks
  5. use_frameworks!
  6. pod 'MBProgressHUD', '~> 1.1.0'
  7. pod 'SDWebImage'
  8. pod 'SDWebImageWebPCoder'
  9. pod 'AFNetworking', '~> 4.0.1'
  10. pod 'Masonry', '~> 1.1.0'
  11. pod 'IQKeyboardManager', '~> 6.5.15'
  12. pod 'MJRefresh', '~> 3.7.5'
  13. pod 'TZImagePickerController'
  14. #因为修改不便, EaseIMKit改为手动导入
  15. #pod 'EaseIMKit', :git => 'https://github.com/cabbageTingZhang/easeui_ios.git'
  16. pod 'HyphenateChat', '~> 4.1.1'
  17. pod 'FMDB'
  18. #滚动视图
  19. pod 'JXCategoryView'
  20. #RTM
  21. pod 'AgoraRtm_iOS', '~> 1.5.1'
  22. #Adjust
  23. pod 'Adjust', '~> 5.2.0'
  24. # x.y.z 请填写具体的 RTC SDK 版本号,如 4.0.1 或 4.0.0.4
  25. # 可通过互动直播发版说明获取最新版本号
  26. # pod 'AgoraRtcEngine_iOS', '4.3.0'
  27. pod 'AgoraRtcEngine_Special_iOS', '4.1.1.30'
  28. # 腾讯美颜
  29. # pod 'XMagic'
  30. pod 'TencentEffect_S1-01/nobundle'
  31. #svga
  32. pod 'SVGAPlayer-iOS', :git => 'https://github.com/cabbageTingZhang/SVGAPlayer-iOS.git'
  33. # 支持 OC & Swift 属性名查看,如果需要直接查看 imageView 的图片名称,可将 'SwiftAndNoHook' 替换成 'Swift'
  34. pod 'LookinServer', '1.2.8', :subspecs => ['Swift'], :configurations => ['Debug']
  35. # 越狱检查
  36. pod 'IOSSecuritySuite'
  37. # 腾讯IM
  38. pod 'TUIChat', :path => "./TUIKit/TUIChat"
  39. pod 'TUIConversation', :path => "./TUIKit/TUIConversation"
  40. pod 'TIMCommon', :path => "./TUIKit/TIMCommon"
  41. pod 'TUICore', :path => "./TUIKit/TUICore"
  42. # 腾讯推送
  43. pod 'TXIMSDK_Plus_iOS_XCFramework'
  44. pod 'TIMPush'
  45. pod 'YYKit'
  46. # 第三方登录/分享等 主模块(必须)
  47. pod 'mob_sharesdk'
  48. # UI模块(非必须,需要用到ShareSDK提供的分享菜单栏和分享编辑页面需要以下1行)
  49. pod 'mob_sharesdk/ShareSDKUI'
  50. pod 'mob_sharesdk/ShareSDKPlatforms/Apple'
  51. pod 'mob_sharesdk/ShareSDKPlatforms/Facebook'
  52. pod 'mob_sharesdk/ShareSDKPlatforms/GooglePlus'
  53. pod 'mob_sharesdk/ShareSDKPlatforms/Instagram'
  54. pod 'mob_sharesdk/ShareSDKPlatforms/Line'
  55. pod 'mob_sharesdk/ShareSDKPlatforms/WhatsApp'
  56. pod 'mob_sharesdk/ShareSDKPlatforms/Twitter'
  57. end