Podfile 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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 'Kingfisher'
  18. # pod 'Nuke'
  19. # pod 'Nuke-WebP-Plugin'
  20. # pod 'Gifu'
  21. # 自动布局
  22. pod 'SnapKit'
  23. # 键盘
  24. pod 'IQKeyboardManagerSwift'
  25. # 弹框
  26. pod 'MBProgressHUD'
  27. # 下拉刷新
  28. pod 'MJRefresh'
  29. # 设备型号
  30. pod 'DeviceKit'
  31. # 内存检测
  32. pod 'MLeaksFinder'
  33. # 占位图
  34. pod 'LYEmptyView'
  35. # 分段导航栏
  36. pod 'JXCategoryView'
  37. # 轮播
  38. pod 'FSPagerView'
  39. # 评分
  40. pod 'SwiftyStarRatingView'
  41. # 二维码
  42. pod 'EFQRCode'
  43. # 小红点
  44. pod 'PPBadgeViewSwift'
  45. # pop动画
  46. pod 'FWPopupView'
  47. # 存储数据Keychain
  48. pod 'KeychainAccess'
  49. # 加密
  50. pod 'CryptoSwift'
  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. # 集成微信(精简版0.2M)
  65. pod 'UMCShare/Social/ReducedWeChat'
  66. # 集成QQ/QZone/TIM(精简版0.5M)
  67. pod 'UMCShare/Social/ReducedQQ'
  68. # 集成新浪微博(精简版1M)
  69. pod 'UMCShare/Social/ReducedSina'
  70. #=====================百度地图===========
  71. #百度地图定位SDK
  72. pod 'BMKLocationKit'
  73. #=====================高德地图===========
  74. #高德地图定位SDK
  75. pod 'AMapLocation'
  76. end