Android常用库整理

本文整理了安卓开发中常用的官方和三方库及其官网地址,方便同仁们进行查阅技术选型追更。这里罗列的库一般是星级较高、可靠性较好、维护中的库,所以在功能性、可靠性以及性能上通常是满足需求的。在技术选型时建议从以下几点进行考量:

  • 扩展性:是否支持自定义功能拓展;
  • 性能:是否需要极致性能要求;
  • 安全性:是否具有安全漏洞;
  • 技术支持:文档是否完备,更新频率等;
  • 体积:是否对包体积具有极致要求;

如果有官方的库建议使用官方的,维护有保障,当然像square公司出品的几乎也可以认为是官方的了。

AndroidX&Material

名称GAV官网简介
appcompatandroidx.appcompat:appcompat:1.1.0Dialog/activity/actionbar/menu等
cardviewandroidx.cardview:cardview:1.0.0卡片布局
materialcom.google.android.material:material:1.1.0卡片布局
lifecycleandroidx.lifecycle:lifecycle-extensions:2.2.0activity/fragment/service生命周期
constraintlayoutandroidx.constraintlayout:constraintlayout:1.1.3相对布局
coordinatorlayoutandroidx.coordinatorlayout:coordinatorlayout:1.1.0动画框架布局
swiperefreshlayoutandroidx.swiperefreshlayout:swiperefreshlayout:1.1.0下拉刷新
viewpagerandroidx.viewpager:viewpager:1.0.0viewpager
viewpager2androidx.viewpager2:viewpager2:1.0.0基于recyclerview实现的viewpager
fragmentandroidx.fragment:fragment:1.2.0fragment
activityandroidx.activity:activity:1.1.0activity
drawerlayoutandroidx.drawerlayout:drawerlayout:1.0.0侧滑布局
recyclerviewandroidx.recyclerview:recyclerview:1.1.0列表
transitionandroidx.transition:transition:1.2.0转场动画
loaderandroidx.loader:loader:1.0.0异步加载
collectionandroidx.collection:collection:1.1.0经优化的List、Map、Set集合
annotationandroidx.annotation:annotation:1.1.0常用注解
multidexandroidx.multidex:multidex:2.0.064K限制,minSDK21以下时需要手动导入

上面只列出了常见的,最全版本可以到这里查看

基础库

并发编程

名称GAV官网简介
rxjava2io.reactivex.rxjava2:rxjava:2.2.5
io.reactivex.rxjava2:rxandroid:2.1.0
org.reactivestreams:reactive-streams:1.0.2
githubrxjava2

数据解析

名称GAV官网简介
fastjsoncom.alibaba:fastjson:1.2.49githubjson解析
gsoncom.google.code.gson:gson:2.8.5githubjson解析
jacksoncom.fasterxml.jackson.core:jackson-core:2.8.9
com.fasterxml.jackson.core:jackson-annotations:2.8.0
com.fasterxml.jackson.core:jackson-databind:2.8.9
githubjson解析
LoganSquareclasspath ‘com.neenbedankt.gradle.plugins:android-apt:1.8’
apply plugin: ‘com.neenbedankt.android-apt’
apt ‘com.bluelinelabs:logansquare-compiler:1.3.6’
compile ‘com.bluelinelabs:logansquare:1.3.6’
githubjson解析,编译期生成代码因此是静态的
simple-xmlorg.simpleframework:simple-xml:2.7.1xml解析
jsouporg.jsoup:jsoup:1.14.1-SNAPSHOTgithubhtml操作

网络请求

名称GAV官网简介
retrofitcom.squareup.retrofit2:retrofit:2.7.1
com.squareup.retrofit2:converter-gson:2.3.0
com.squareup.retrofit2:adapter-rxjava2:2.3.0
com.squareup.retrofit2:converter-simplexml:2.3.0
github网络请求
okhttpcom.squareup.okhttp3:okhttp:3.14.4
com.squareup.okhttp3:okhttp-urlconnection:3.9.1
github网络请求
Java-WebSocketorg.java-websocket:Java-WebSocket:1.5.1githubWebSocket
android-async-httpcom.loopj.android:android-async-http:1.4.11github网络请求
volleycom.android.volley:volley:1.2.1-SNAPSHOTgithub网络请求、图片加载
NoHttpcom.yanzhenjie.nohttp:nohttp:1.1.11github网络请求
Novatecom.tamic.novate:novate:1.5.5github网络请求

文件读写

名称GAV官网简介
okiocom.squareup.okio:okio:1.17.4文件IO

轻量级存储

名称GAV官网简介
MMKVcom.tencent:mmkv-static:1.2.10githubkv存储,基于mmap

数据库

名称GAV官网简介
litepalorg.litepal.android:java:3.2.3
org.litepal.android:core:3.2.3
github数据库
activeandroidcom.michaelpardo:activeandroid:3.1.0-SNAPSHOTgithub数据库
ormlite-androidcom.j256.ormlite:ormlite-android:5.7-SNAPSHOTgithub数据库
greendaoclasspath ‘org.greenrobot:greendao-gradle-plugin:3.3.0’
apply plugin: ‘org.greenrobot.greendao’
implementation ‘org.greenrobot:greendao:3.3.0’
github数据库
realmclasspath “io.realm:realm-gradle-plugin:10.7.0-SNAPSHOT”
apply plugin: ‘realm-android’
compileOnly ‘org.projectlombok:lombok:1.16.18’
compileOnly ‘javax.annotation:javax.annotation-api:1.3.1’
annotationProcessor ‘org.projectlombok:lombok:1.16.18’
github数据库,虽然性能不错,但是包体积很大

日志记录

名称GAV官网简介
loggercom.orhanobut:logger:2.2.0github日志
timbercom.jakewharton.timber:timber:4.7.1github日志,价值在于日志类的抽象
LogUtilscom.apkfuns.logutils:library:1.7.5github日志,功能比较完备
xLogcom.elvishew:xlog:1.10.0github日志
Log4acom.github.pqpo:Log4a:1.4.2github日志,基于mmap
marscom.tencent.mars:mars-wrapper:1.2.5
或者com.tencent.mars:mars-core:1.2.5
github高性能日志
xCrashcom.iqiyi.xcrash:xcrash-android-lib:3.0.0githubjava/native奔溃日志

图片加载

名称GAV官网简介
glidecom.github.bumptech.glide:glide:4.9.0
com.github.bumptech.glide:gifdecoder:4.9.0
com.github.bumptech.glide:disklrucache:4.9.0
com.github.bumptech.glide:annotations:4.9.0
com.github.bumptech.glide:compiler:4.9.0
github图片加载
glide-transformationsjp.wasabeef:glide-transformations:4.0.0
jp.co.cyberagent.android:gpuimage:2.0.4
glide拓展
picassocom.squareup.picasso:picasso:2.71828github图片加载
frescocom.facebook.fresco:fresco:2.5.0github图片加载,体积较大
Android-Universal-Image-Loadercom.nostra13.universalimageloader:universal-image-loader:1.9.5github图片加载

事件总线

名称GAV官网简介
eventbusorg.greenrobot:eventbus:3.1.1github事件总线
eventbusorg.simple:androideventbus:1.0.5.1github事件总线,不再维护
ottocom.squareup:otto:1.3.8github事件总线,不再维护

js通讯

名称GAV官网简介
jsbridgecom.github.lzyzsd:jsbridge:1.0.4githubjs通讯,不再维护
DSBridge-Androidcom.github.wendux:DSBridge-Android:3.0-SNAPSHOT
or x5: com.github.wendux:DSBridge-Android:x5-3.0-SNAPSHOT
githubjs通讯
AgentWebimplementation ‘com.github.Justson.AgentWeb:agentweb-core:v4.1.9-androidx’ // (必选)
implementation ‘com.github.Justson.AgentWeb:agentweb-filechooser:v4.1.9-androidx’ // (可选)
implementation ‘com.github.Justson:Downloader:v4.1.9-androidx’ // (可选)
githubh5容器

其他

名称GAV官网简介
utilcodecom.blankj:utilcode:1.30.0githubSDK封装,也支持事件总线、日志记录、并发编程等

架构

组件化

名称GAV官网简介
ARouterclasspath “com.alibaba:arouter-register:1.0.2”
compile ‘com.alibaba:arouter-api:1.5.2’
annotationProcessor ‘com.alibaba:arouter-compiler:1.5.2’
githubSDK封装,也支持事件总线、日志记录、并发编程等

插件化

名称GAV官网简介

AOP/IOC

依赖注入和插装

名称GAV官网简介
daggercom.google.dagger:dagger-android:2.x
com.google.dagger:dagger-android-processor:2.x
github依赖注入
androidannotationsorg.androidannotations:androidannotations:version
org.androidannotations:androidannotations-api:version
github依赖注入
hunter-okhttpcom.quinn.hunter:hunter-okhttp-library:0.8.5
插件:com.quinn.hunter:hunter-okhttp-plugin:0.9.2
githubokhttp钩子
xHookgithubnative钩子
aspectjxclasspath ‘com.hujiang.aspectjx:gradle-android-plugin-aspectjx:2.0.8’github增强版aspectj

插桩工具链

名称GAV官网简介
javapoetcom.squareup:javapoet:1.7.0java文件生成
kotlinpoetcom.squareup:kotlinpoet:1.9.0githubkotlin文件生成
javassistorg.javassist:javassist:3.28.0-GAgithubjava、字节码
asmorg.ow2.asm:asm:9.2官网字节码
aspectjorg.aspectj:aspectjweaver:1.9.7官网
github
java

功能库

名称GAV官网简介
keeplivecom.fanjun:keeplive:1.1.20应用层进程保活
permissioncom.yanzhenjie.permission: x:2.0.1动态权限
rxpermissionscom.tbruyelle.rxpermissions2:rxpermissions:0.9.5动态权限
rxlifecycle-androidcom.trello.rxlifecycle2:rxlifecycle-android:2.2.1rx生命周期
zxingcom.google.zxing:core:3.3.3
com.google.zxing:android-core:3.3.0
github二维码编解码
jjwtio.jsonwebtoken:jjwt:0.9.0githubtoken工具
pinyin4jcom.belerweb:pinyin4j:2.5.0github拼音
tinypinyincom.github.promeg:tinypinyin:2.0.3
com.github.promeg:tinypinyin-android-asset-lexicons:2.0.3
com.github.promeg:tinypinyin-lexicons-android-cncity:2.0.3
github拼音
PersistentCookieJarcom.github.franmontiel:PersistentCookieJar:v1.0.1githubcookie持久化
Matissecom.zhihu.android:matisse:0.5.3-beta3github图片选择
easyexcelcom.alibaba:easyexcel:2.2.10githubExcel操作
dexmakercom.linkedin.dexmaker:dexmaker-mockito:2.28.1githubclass代理
FingerprintIdentifycom.github.uccmawei:FingerprintIdentify:1.2.6github指纹识别封装

控件库

名称GAV官网简介
qmuicom.qmuiteam:qmui:1.4.4github基础控件库
bga-bannercn.bingoogolapple:bga-banner:3.0.0banner轮播图
materialrefreshlayoutcom.cjj.materialrefreshlayout:library:1.3.0下拉刷新
SmartRefreshLayoutcom.scwang.smartrefresh:SmartRefreshLayout:1.1.0github下拉刷新&加载更多
recyclerviewcom.yanzhenjie.recyclerview: x:1.3.2增强recyclerview :loadmore、sticky、侧滑菜单等
recyclerviewcom.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.46增强recyclerview :通用adapter
ultimaterecyclerviewcom.marshalchen.ultimaterecyclerview:library:0.9.0github增强recyclerview:可折叠
recyclerview-animatorsjp.wasabeef:recyclerview-animators:4.0.2githubrecyclerview 动画
easyrecyclerviewcom.jude:easyrecyclerview:4.4.2增强recyclerview
PhotoViewcom.github.chrisbanes:PhotoView:2.1.4图片缩放
photoviewcom.github.chrisbanes.photoview:library:1.2.4图片缩放
imagezoomit.sephiroth.android.library.imagezoom:library:1.0.4
it.sephiroth.android.library.easing:library:1.0.2
图片缩放
android-pdf-viewercom.github.barteksc:android-pdf-viewer:2.8.2
com.github.barteksc:pdfium-android:1.7.1
PDF预览(有高级安全漏洞不建议实用)
ticketview:com.vipulasri:ticketview:1.0.7仿票据背景布局
flowlayout-libcom.hyman:flowlayout-lib:1.1.2流式布局
flexboxcom.google.android:flexbox:1.1.0流式布局&recyclerview拓展
loadingcom.yanzhenjie:loading:1.0.2加载动画
LoadingDrawablegithub加载动画,不再维护但是我个人非常推崇drawable形式
gridPasswordViewcom.jungly:gridPasswordView:0.3github密码、短信验证码输入框
NotifyUtilgithub玩转安卓通知栏通知
ExpansionPanelcom.github.florent37:expansionpanel:1.2.4github动画展开/收起容器
VerticalTabLayoutq.rorbin:VerticalTabLayout:1.2.5github纵向tablayout
Skeletoncom.ethanhua:skeleton:1.1.2
io.supercharge:shimmerlayout:2.1.0
github骨架加载
XPopupcom.github.li-xiaojun:XPopup:2.4.3github弹窗框架
NewbieGuidecom.github.huburt-Hu:NewbieGuide:v2.4.0github引导页
lottie-androidcom.airbnb.android:lottie:3.7.1-SNAPSHOTgithub引导页

开放平台SDK

名称GAV官网简介
QQ未上传到仓库https://connect.qq.comQQ互联SDK
ddsharesdkcom.alibaba.android:ddsharesdk:1.1.0https://ding-doc.dingtalk.com/钉钉分享
wechat-sdk-androidcom.tencent.mm.opensdk:wechat-sdk-android-without-mta:5.3.1https://open.weixin.qq.com/微信开发SDK
gmscom.google.android.gms:play-services-measurement-api:17.2.0
com.google.android.gms:play-services-base:17.0.0
com.google.android.gms:play-services-tasks:17.0.0
com.google.android.gms:play-services-measurement:17.2.0
com.google.android.gms:play-services-measurement-sdk:17.2.0
com.google.android.gms:play-services-measurement-impl:17.2.0
com.google.android.gms:play-services-stats:17.0.0
com.google.android.gms:play-services-measurement-sdk-api:17.2.0
com.google.android.gms:play-services-measurement-base:17.2.0
com.google.android.gms:play-services-ads-identifier:17.0.0
com.google.android.gms:play-services-basement:17.0.0
https://firebase.google.com/docs/android谷歌FCM推送
firebasecom.google.firebase:firebase-messaging:20.0.0
com.google.firebase:firebase-core:17.2.0
com.google.firebase:firebase-analytics:17.2.0
com.google.firebase:firebase-iid:20.0.0
com.google.firebase:firebase-common:19.0.0
com.google.firebase:firebase-iid-interop:17.0.0
com.google.firebase:firebase-measurement-connector:18.0.0
https://firebase.google.cn/谷歌firebase
umengcom.umeng.umsdk:push:6.0.1
com.umeng.umsdk:asms:1.1.3
com.umeng.umsdk:common:9.1.0
com.umeng.umsdk:crash:0.0.4
com.umeng.umsdk:oaid_vivo:1.0.0.1
com.umeng.umsdk:oaid_oppo:1.0.4
com.umeng.umsdk:oaid_mi:1.0.0
com.umeng.umsdk:oaid_lenovo:1.0.0
https://www.umeng.com/push友盟推送
  • 2
    点赞
  • 17
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值