Podfile 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. pod 'ReachabilitySwift'
  11. # Rx
  12. pod 'RxSwift'
  13. pod 'RxCocoa'
  14. # json解析
  15. pod 'SwiftyJSON'
  16. pod 'ObjectMapper'
  17. # 缓存
  18. # pod 'Cache'
  19. pod 'RealmSwift'
  20. pod 'FMDB'
  21. # 图片加载
  22. pod 'Kingfisher'
  23. # pod 'Nuke'
  24. # pod 'Nuke-WebP-Plugin'
  25. # pod 'Gifu'
  26. # 自动布局
  27. pod 'SnapKit'
  28. pod 'TangramKit'
  29. # 键盘
  30. pod 'IQKeyboardManagerSwift'
  31. # 弹框
  32. pod 'MBProgressHUD'
  33. # 下拉刷新
  34. pod 'MJRefresh'
  35. # 设备型号
  36. pod 'DeviceKit'
  37. # 占位图
  38. pod 'LYEmptyView'
  39. # 分段导航栏
  40. pod 'JXSegmentedView'
  41. # 轮播
  42. pod 'FSPagerView'
  43. # 二维码
  44. # pod 'EFQRCode'
  45. # 小红点
  46. pod 'PPBadgeViewSwift'
  47. # pop动画
  48. pod 'FWPopupView'
  49. # 存储数据Keychain
  50. pod 'KeychainAccess'
  51. # mvvm
  52. # pod 'ReactorKit'
  53. # 富文本
  54. # pod 'RichEditorView'
  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. #=====================百度地图===========
  75. # 百度地图定位SDK
  76. pod 'BMKLocationKit'
  77. # 百度地图SDK
  78. pod 'BaiduMapKit'
  79. end