Podfile 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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 'LYEmptyView'
  37. pod 'JXCategoryView'
  38. # 轮播
  39. # pod 'FSPagerView'
  40. # 分段导航栏
  41. # pod 'XLPagerTabStrip'
  42. # 评分
  43. # pod 'SwiftyStarRatingView'
  44. # 二维码
  45. # pod 'EFQRCode'
  46. # 小红点
  47. # pod 'PPBadgeViewSwift'
  48. # 日期时间处理
  49. # pod 'SwiftDate'
  50. # pop动画
  51. # pod 'FWPopupView'
  52. # 路由
  53. # pod 'MGJRouter'
  54. #======================第三方平台===========
  55. #======================友盟===========
  56. # UM基础库
  57. pod 'UMCCommon'
  58. pod 'UMCSecurityPlugins'
  59. # 日志库(调试)
  60. pod 'UMCCommonLog'
  61. # 统计 SDK
  62. pod 'UMCAnalytics'
  63. # Push SDK
  64. pod 'UMCPush'
  65. # U-Share SDK UI模块(分享面板,建议添加)
  66. pod 'UMCShare/UI'
  67. # 集成微信(精简版0.2M)
  68. pod 'UMCShare/Social/ReducedWeChat'
  69. # 集成QQ/QZone/TIM(精简版0.5M)
  70. pod 'UMCShare/Social/ReducedQQ'
  71. # 集成新浪微博(精简版1M)
  72. pod 'UMCShare/Social/ReducedSina'
  73. #======================Bugly===========
  74. # 异常上报
  75. # pod 'Bugly'
  76. #=====================百度地图===========
  77. # #百度地图定位SDK
  78. pod 'BMKLocationKit'
  79. #
  80. # #百度地图
  81. # pod 'BaiduMapKit'
  82. target 'RainbowPlanetTests' do
  83. inherit! :search_paths
  84. # Pods for testing
  85. end
  86. target 'RainbowPlanetUITests' do
  87. inherit! :search_paths
  88. # Pods for testing
  89. end
  90. end