常用第三方库的依赖导入代码

常用第三方库

allprojects {
    repositories {
        maven { url 'https://jitpack.io' }
    }
}
  1. Jsoup:
    implementation 'org.jsoup:jsoup:1.10.3'
  2. Picasso图片下载库:
implementation 'com.squareup.picasso:picasso:2.5.2'
implementation 'com.squareup.picasso:picasso:2.71828' //新版本来啦
  1. OKHttp 3:
    implementation 'com.squareup.okhttp3:okhttp:3.2.0'
  2. GSON:
    implementation 'com.google.code.gson:gson:2.8.5'
  3. 汉子拼音工具:汉子转化为拼音
    implementation 'com.belerweb:pinyin4j:2.5.0'
  4. BaseRecyclerViewAdapter: 替换RV的Adapter,可以大幅度减少代码量
    implementation 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.30'
  5. 侧边栏View: 添加一个侧边栏View。类似于通讯录的侧边字母选择栏
    implementation 'com.github.D10NGYANG:DL10SideBar:1.0.0'
  6. View右上角添加小红点: 类似于微信的未读消息红点,红点上可以显示数字
    implementation 'com.itingchunyu.badgeview:badgeview:1.0.5'
  7. Rich View: 设置drawableleft等属性插入的图片的大小
    implementation'com.tolstykh.textviewrichdrawable:textview-rich-drawable:0.3.2'

你可能感兴趣的:(常用第三方库的依赖导入代码)