美文网首页Android
项目御用依赖

项目御用依赖

作者: 卢融霜 | 来源:发表于2020-01-03 10:46 被阅读0次
  • recyclerview

androidx.recyclerview:recyclerview:1.1.0
com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.40
  • butterknife

    implementation 'com.jakewharton:butterknife:10.2.0'
    annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.0'
  • 刷新套装

    implementation 'com.jakewharton:butterknife:10.2.0'
    annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.0'
  • 网络请求

 implementation 'com.squareup.retrofit2:retrofit:2.6.2'
 implementation 'com.squareup.retrofit2:converter-gson:2.6.2'
  • 图片加载

 implementation 'com.github.bumptech.glide:glide:4.10.0'
 annotationProcessor 'com.github.bumptech.glide:compiler:4.10.0'
  • 应用UI 主题 样式

implementation 'com.github.xuexiangjys:XUI:1.0.9'
implementation 'com.google.android.material:material:1.2.0-alpha02'
  • 沉浸式状态栏

implementation 'com.gyf.immersionbar:immersionbar:2.3.3-beta09'
  • ViewPager 搭档 MagicIndicator

implementation 'com.github.hackware1993:MagicIndicator:1.5.0'
  • 加载中动画

 implementation 'com.wang.avi:library:2.1.3'
  • 考勤日历

implementation 'com.haibin:calendarview:3.6.6'
  • 事件分发 EventBus

implementation 'org.greenrobot:eventbus:3.1.1'

相关文章

  • 项目御用依赖

    recyclerview butterknife 刷新套装 网络请求 图片加载 应用UI 主题 样式 沉浸式状态栏...

  • maven 如何解决依赖循环?(依赖排除)

    什么叫循环依赖?如何解决循环依赖?依赖排除细节实际项目总结 一. 什么叫循环依赖? 项目A依赖项目B的同时,项目B...

  • 8 项目统一相同依赖/插件的版本号

    1 为什么要统一依赖与插件 项目依赖结构如下 项目A依赖项目B-1.0与项目C-1.0,项目B-1.0依赖项目C-...

  • 项目依赖

    同一个项目 compile project(":gxhj-usc-client")compile project(...

  • Maven 依赖关系

    项目的依赖关系主要分为三种:依赖,继承,聚合 依赖关系 依赖关系是最常用的一种,就是你的项目需要依赖其他项目,比如...

  • python如何管理项目依赖包

    requirement.txt(项目依赖包及版本列表)管理项目依赖包和版本,方便项目在新环境中部署 生成项目依赖包...

  • 依赖管理

    依赖配置 依赖指的是当前项目所需的jar包,一个项目可以设置多个依赖 依赖传递 当项目需要用到另外一个项目时,把另...

  • Maven中exclusions用法

    exclusions排除传递依赖 在mavenB项目中引入mavenA项目依赖,通过依赖传递,会将mavenA中的...

  • 项目的工程依赖

    最近换了个新公司,项目结构发生了改变.这里来记录一下. 一 .项目依赖 各个项目的依赖,搞成静态库;然后主项目依赖...

  • ERROR: Project :app declares a d

    导入他人项目后, 且少依赖项目, 找到依赖项目导入后, 报错了:报错截图: 我看了一下, 这个依赖项目是一个adt...

网友评论

    本文标题:项目御用依赖

    本文链接:https://www.haomeiwen.com/subject/pvczoctx.html