Podfile 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. # 网络请求
  8. pod 'Alamofire'
  9. pod 'Moya/RxSwift'
  10. # Rx
  11. pod 'RxSwift'
  12. pod 'RxCocoa'
  13. # json解析
  14. pod 'SwiftyJSON'
  15. pod 'ObjectMapper'
  16. # 数据存储
  17. pod 'RealmSwift'
  18. # 图片加载
  19. pod 'Kingfisher'
  20. # 自动布局
  21. pod 'SnapKit'
  22. pod 'TangramKit'
  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. # 分段导航栏
  38. pod 'JXCategoryView'
  39. # 轮播
  40. pod 'FSPagerView'
  41. # 评分
  42. pod 'SwiftyStarRatingView'
  43. # 二维码
  44. pod 'EFQRCode'
  45. # 小红点
  46. pod 'PPBadgeViewSwift'
  47. # 日期时间处理
  48. pod 'SwiftDate'
  49. # pop动画
  50. pod 'FWPopupView'
  51. # 存储数据Keychain
  52. pod 'KeychainAccess'
  53. # 路由
  54. # pod 'MGJRouter'
  55. #======================第三方平台===========
  56. #======================友盟===========
  57. # UM基础库
  58. pod 'UMCCommon'
  59. pod 'UMCSecurityPlugins'
  60. # 日志库(调试)
  61. pod 'UMCCommonLog'
  62. # 统计 SDK
  63. pod 'UMCAnalytics'
  64. # Push SDK
  65. pod 'UMCPush'
  66. # U-Share SDK UI模块(分享面板,建议添加)
  67. pod 'UMCShare/UI'
  68. # 集成微信(精简版0.2M)
  69. pod 'UMCShare/Social/ReducedWeChat'
  70. # 集成QQ/QZone/TIM(精简版0.5M)
  71. pod 'UMCShare/Social/ReducedQQ'
  72. # 集成新浪微博(精简版1M)
  73. pod 'UMCShare/Social/ReducedSina'
  74. #======================Bugly===========
  75. # 异常上报
  76. # pod 'Bugly'
  77. #=====================百度地图===========
  78. # #百度地图定位SDK
  79. pod 'BMKLocationKit'
  80. target 'RainbowPlanetTests' do
  81. inherit! :search_paths
  82. # Pods for testing
  83. end
  84. target 'RainbowPlanetUITests' do
  85. inherit! :search_paths
  86. # Pods for testing
  87. end
  88. end