Podfile 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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 'RealmSwift'
  19. # 图片加载
  20. pod 'Kingfisher'
  21. # 自动布局
  22. pod 'SnapKit'
  23. # 键盘
  24. pod 'IQKeyboardManagerSwift'
  25. # 加密
  26. pod 'CryptoSwift'
  27. # 弹框
  28. pod 'MBProgressHUD'
  29. # 下拉刷新
  30. pod 'MJRefresh'
  31. # 设备型号
  32. pod 'DeviceKit'
  33. # 内存检测
  34. pod 'MLeaksFinder'
  35. # 轮播
  36. # pod 'FSPagerView'
  37. # 分段导航栏
  38. # pod 'XLPagerTabStrip'
  39. # 评分
  40. # pod 'SwiftyStarRatingView'
  41. # 二维码
  42. # pod 'EFQRCode'
  43. # 小红点
  44. # pod 'PPBadgeViewSwift'
  45. # 占位图
  46. # pod 'LYEmptyView'
  47. # 日期时间处理
  48. # pod 'SwiftDate'
  49. # pop动画
  50. # pod 'FWPopupView'
  51. # 路由
  52. # pod 'MGJRouter'
  53. #======================第三方平台===========
  54. #======================友盟===========
  55. # UM基础库
  56. pod 'UMCCommon'
  57. pod 'UMCSecurityPlugins'
  58. # 日志库(调试)
  59. pod 'UMCCommonLog'
  60. # 统计 SDK
  61. pod 'UMCAnalytics'
  62. # Push SDK
  63. pod 'UMCPush'
  64. # U-Share SDK UI模块(分享面板,建议添加)
  65. pod 'UMCShare/UI'
  66. # 集成微信(精简版0.2M)
  67. pod 'UMCShare/Social/ReducedWeChat'
  68. # 集成QQ/QZone/TIM(精简版0.5M)
  69. pod 'UMCShare/Social/ReducedQQ'
  70. # 集成新浪微博(精简版1M)
  71. pod 'UMCShare/Social/ReducedSina'
  72. #======================Bugly===========
  73. # 异常上报
  74. # pod 'Bugly'
  75. #=====================百度地图===========
  76. #百度地图定位SDK
  77. pod 'BMKLocationKit'
  78. target 'RainbowPlanetTests' do
  79. inherit! :search_paths
  80. # Pods for testing
  81. end
  82. target 'RainbowPlanetUITests' do
  83. inherit! :search_paths
  84. # Pods for testing
  85. end
  86. end