Podfile 2.1 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 'Cache'
  18. pod 'FMDB'
  19. # 图片加载
  20. pod 'Kingfisher'
  21. # pod 'Nuke'
  22. # pod 'Nuke-WebP-Plugin'
  23. # pod 'Gifu'
  24. # 自动布局
  25. pod 'SnapKit'
  26. # 键盘
  27. pod 'IQKeyboardManagerSwift'
  28. # 弹框
  29. pod 'MBProgressHUD'
  30. # 下拉刷新
  31. pod 'MJRefresh'
  32. # 设备型号
  33. pod 'DeviceKit'
  34. # 占位图
  35. pod 'LYEmptyView'
  36. # 分段导航栏
  37. pod 'JXSegmentedView'
  38. # 轮播
  39. pod 'FSPagerView'
  40. # 小红点
  41. pod 'PPBadgeViewSwift'
  42. # 动画效果
  43. pod 'pop'
  44. # pop动画
  45. pod 'FWPopupView'
  46. # 存储数据Keychain
  47. pod 'KeychainAccess'
  48. # js交互
  49. pod 'WebViewJavascriptBridge'
  50. # 路由
  51. pod 'SwiftyMediator/Routable'
  52. # 上下滚动的Label
  53. pod 'DPScrollNumberLabel'
  54. # 左右Label
  55. pod 'FlickerNumber'
  56. #======================第三方平台===========
  57. #======================友盟===========
  58. # UM基础库
  59. pod 'UMCCommon'
  60. pod 'UMCSecurityPlugins'
  61. # 日志库(调试)
  62. pod 'UMCCommonLog'
  63. # 统计 SDK
  64. pod 'UMCAnalytics'
  65. # Push SDK
  66. pod 'UMCPush'
  67. # U-Share SDK UI模块(分享面板,建议添加)
  68. pod 'UMCShare/UI'
  69. # 集成微信(精简版0.2M)
  70. pod 'UMCShare/Social/ReducedWeChat'
  71. # 集成QQ/QZone/TIM(精简版0.5M)
  72. pod 'UMCShare/Social/ReducedQQ'
  73. # 集成新浪微博(精简版1M)
  74. pod 'UMCShare/Social/ReducedSina'
  75. #=====================百度地图===========
  76. # 百度地图定位SDK
  77. pod 'BMKLocationKit', '1.5.0'
  78. # 百度地图SDK
  79. pod 'BaiduMapKit'
  80. #=====================AliyunVideoSDK===========
  81. pod 'AliyunVideoSDKStd'
  82. pod 'QuCore-ThirdParty'
  83. pod 'VODUpload'
  84. pod 'AliyunOSSiOS'
  85. pod 'AlivcConan'
  86. pod 'AFNetworking', '~> 3.0'
  87. pod 'JSONModel','~> 1.7.0'
  88. pod 'ZipArchive','1.4.0'
  89. end