Podfile 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. #source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
  2. # Uncomment the next line to define a global platform for your project
  3. platform :ios, '10.0'
  4. target 'RainbowPlanet' do
  5. # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
  6. inhibit_all_warnings!
  7. use_frameworks!
  8. # 网络请求
  9. pod 'Alamofire'
  10. pod 'Moya/RxSwift'
  11. # Rx
  12. pod 'RxSwift'
  13. pod 'RxCocoa'
  14. # json解析
  15. pod 'SwiftyJSON'
  16. pod 'ObjectMapper'
  17. # 缓存
  18. pod 'Cache'
  19. pod 'FMDB'
  20. # 图片加载
  21. pod 'Kingfisher', '~> 5.7.1'
  22. # gif动画
  23. # pod 'Gifu'
  24. # josn动画
  25. pod 'lottie-ios'
  26. # 自动布局
  27. pod 'SnapKit'
  28. pod 'Masonry'
  29. # 键盘
  30. pod 'InputBarAccessoryView'
  31. pod 'IQKeyboardManagerSwift'
  32. # 弹框
  33. pod 'MBProgressHUD'
  34. # 下拉刷新
  35. pod 'MJRefresh'
  36. # 设备型号
  37. pod 'DeviceKit'
  38. # 占位图
  39. pod 'LYEmptyView'
  40. # 分段导航栏
  41. pod 'JXSegmentedView'
  42. pod 'JXPagingView/Paging'
  43. # 轮播
  44. pod 'FSPagerView'
  45. # 小红点
  46. pod 'PPBadgeViewSwift'
  47. # 动画效果
  48. # pod 'pop'
  49. # pop动画
  50. pod 'FWPopupView'
  51. # 存储数据Keychain
  52. pod 'KeychainAccess'
  53. # js交互
  54. pod 'WebViewJavascriptBridge'
  55. # 路由
  56. pod 'SwiftyMediator/Routable'
  57. # 上下滚动的Label
  58. pod 'DPScrollNumberLabel'
  59. # TabBarController
  60. pod 'ESTabBarController-swift'
  61. # 日期选择器
  62. pod 'PGDatePicker'
  63. # 生成二维码
  64. pod 'EFQRCode'
  65. # Label扩展
  66. pod 'YYText'
  67. pod 'AFNetworking', '~> 3.0'
  68. pod 'JSONModel','~> 1.7.0'
  69. pod 'ZipArchive','1.4.0'
  70. # 左右Label
  71. # pod 'FlickerNumber'
  72. # 内存泄露
  73. # pod 'MLeaksFinder'
  74. # pod 'FBMemoryProfiler'
  75. #======================第三方平台===========
  76. #======================友盟===========
  77. # UM基础库
  78. pod 'UMCCommon'
  79. pod 'UMCSecurityPlugins'
  80. # 日志库(调试)
  81. pod 'UMCCommonLog'
  82. # 统计 SDK
  83. pod 'UMCAnalytics'
  84. # Push SDK
  85. pod 'UMCPush'
  86. # U-Share SDK UI模块(分享面板,建议添加)
  87. pod 'UMCShare/UI'
  88. # 集成微信(精简版0.2M)
  89. pod 'UMCShare/Social/ReducedWeChat'
  90. # 集成QQ/QZone/TIM(精简版0.5M)
  91. pod 'UMCShare/Social/ReducedQQ'
  92. # 集成新浪微博(精简版1M)
  93. pod 'UMCShare/Social/ReducedSina'
  94. #=====================百度地图===========
  95. # 百度地图定位SDK
  96. pod 'BMKLocationKit', '1.5.0'
  97. # 百度地图SDK
  98. pod 'BaiduMapKit'
  99. #=====================AliyunVideoSDK===========
  100. #共同依赖的库
  101. pod 'QuCore-ThirdParty'
  102. pod 'AlivcConan'
  103. #短视频SDK
  104. pod 'AliyunVideoSDKPro'
  105. pod 'VODUpload' #短视频上传,不使用上传功能可以不依赖此库
  106. #播放器SDK
  107. pod 'AliPlayerPartSDK_iOS'
  108. # pod 'AliPlayerSDK_iOS' #单独集成播放器时使用这个
  109. #=====================融云IMSDK===========
  110. #融云 IM 通讯能力库
  111. pod 'RongCloudIM/IMLib'
  112. #融云 IM 界面组件
  113. pod 'RongCloudIM/IMKit'
  114. end