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 '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. #======================友盟===========
  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. end