podfile 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
  2. platform :ios, '11.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', '~> 5.11.1'
  8. pod 'SDWebImageWebPCoder'
  9. pod 'AFNetworking', '~> 4.0.1'
  10. pod 'Masonry', '~> 1.1.0'
  11. pod 'YYCache', '~> 1.0.4'
  12. pod 'IQKeyboardManager', '~> 6.5.15'
  13. pod 'MJRefresh', '~> 3.7.5'
  14. pod 'TZImagePickerController', '~> 3.8.3'
  15. #因为修改不便, EaseIMKit改为手动导入
  16. #pod 'EaseIMKit', :git => 'https://github.com/cabbageTingZhang/easeui_ios.git'
  17. pod 'HyphenateChat', '~> 4.1.1'
  18. pod 'FMDB'
  19. #滚动视图
  20. pod 'JXCategoryView', '1.6.1'
  21. #RTM
  22. pod 'AgoraRtm_iOS', '~> 1.5.1'
  23. #Adjust
  24. pod 'Adjust', '~> 4.38.4'
  25. # x.y.z 请填写具体的 RTC SDK 版本号,如 4.0.1 或 4.0.0.4
  26. # 可通过互动直播发版说明获取最新版本号
  27. # pod 'AgoraRtcEngine_iOS', '4.3.0'
  28. pod 'AgoraRtcEngine_Special_iOS', '4.1.1.30'
  29. # 配置商汤美颜的依赖库
  30. pod 'SenseLib', :path => 'sense.podspec'
  31. #svga
  32. pod 'SVGAPlayer-iOS', :git => 'https://github.com/cabbageTingZhang/SVGAPlayer-iOS.git'
  33. # 推送
  34. pod 'mob_pushsdk'
  35. # 第三方登录/分享等 主模块(必须)
  36. pod 'mob_sharesdk'
  37. # UI模块(非必须,需要用到ShareSDK提供的分享菜单栏和分享编辑页面需要以下1行)
  38. pod 'mob_sharesdk/ShareSDKUI'
  39. pod 'mob_sharesdk/ShareSDKPlatforms/Apple'
  40. pod 'mob_sharesdk/ShareSDKPlatforms/Facebook'
  41. pod 'mob_sharesdk/ShareSDKPlatforms/GooglePlus'
  42. pod 'mob_sharesdk/ShareSDKPlatforms/Instagram'
  43. pod 'mob_sharesdk/ShareSDKPlatforms/Line'
  44. pod 'mob_sharesdk/ShareSDKPlatforms/WhatsApp'
  45. pod 'mob_sharesdk/ShareSDKPlatforms/Twitter'
  46. end