Podfile 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. # Uncomment the next line to define a global platform for your project
  2. platform :ios, '9.0'
  3. target 'RainbowPlanet' do
  4. # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
  5. inhibit_all_warnings!
  6. use_frameworks!
  7. # Pods for RainbowPlanet
  8. # 网络请求
  9. pod 'Alamofire'
  10. pod 'Moya/RxSwift'
  11. # Rx
  12. pod 'RxSwift'
  13. pod 'RxCocoa'
  14. # json解析
  15. pod 'SwiftyJSON'
  16. pod 'ObjectMapper'
  17. # 图片加载
  18. pod 'Kingfisher'
  19. # 自动布局
  20. pod 'SnapKit'
  21. # 键盘
  22. pod 'IQKeyboardManagerSwift'
  23. # 加密
  24. pod 'CryptoSwift'
  25. # 弹框
  26. pod 'MBProgressHUD'
  27. # 下拉刷新
  28. pod 'MJRefresh'
  29. # 设备型号
  30. pod 'DeviceKit'
  31. # 内存检测
  32. pod 'MLeaksFinder'
  33. # 轮播
  34. # pod 'FSPagerView'
  35. # 分段导航栏
  36. # pod 'XLPagerTabStrip'
  37. # 评分
  38. # pod 'SwiftyStarRatingView'
  39. # 二维码
  40. # pod 'EFQRCode'
  41. # 小红点
  42. # pod 'PPBadgeViewSwift'
  43. # 占位图
  44. # pod 'LYEmptyView'
  45. # 日期时间处理
  46. # pod 'SwiftDate'
  47. # pop动画
  48. # pod 'FWPopupView'
  49. # 路由
  50. # pod 'MGJRouter'
  51. #======================第三方平台===========
  52. #======================友盟===========
  53. # UM基础库
  54. pod 'UMCCommon'
  55. pod 'UMCSecurityPlugins'
  56. # 日志库(调试)
  57. pod 'UMCCommonLog'
  58. # 统计 SDK
  59. pod 'UMCAnalytics'
  60. # Push SDK
  61. pod 'UMCPush'
  62. # U-Share SDK UI模块(分享面板,建议添加)
  63. pod 'UMCShare/UI'
  64. # 集成微信(完整版14.4M)
  65. pod 'UMCShare/Social/WeChat'
  66. # 集成QQ/QZone/TIM(精简版0.5M)
  67. pod 'UMCShare/Social/ReducedQQ'
  68. # 集成新浪微博(精简版1M)
  69. pod 'UMCShare/Social/ReducedSina'
  70. #======================Bugly===========
  71. # 异常上报
  72. # pod 'Bugly'
  73. #=====================百度地图===========
  74. #百度地图定位SDK
  75. pod 'BMKLocationKit'
  76. target 'RainbowPlanetTests' do
  77. inherit! :search_paths
  78. # Pods for testing
  79. end
  80. target 'RainbowPlanetUITests' do
  81. inherit! :search_paths
  82. # Pods for testing
  83. end
  84. end