Android开发比较好用的依赖

个人感觉比较好用的Android开发依赖

//圆角图片
implementation 'de.hdodenhof:circleimageview:2.2.0'
implementation 'com.squareup.picasso:picasso:2.5.2'
//视频播放
implementation 'fm.jiecao:jiecaovideoplayer:5.5.4'
/*网路请求跟andorid-async-http包一起使用的*/
implementation 'cz.msebera.android:httpclient:4.3.6'
//卡片视图
implementation 'com.android.support:cardview-v7:28.0.0'
implementation 'com.squareup.picasso:picasso:2.5.2'
//fastJson
implementation 'com.alibaba:fastjson:1.2.12'
implementation files('libs/android-async-http-1.4.9.jar')
//TabLayout架包
implementation 'com.android.support:design:28.0.0'
//tterknife自动绑定id
implementation 'com.jakewharton:butterknife:8.7.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.7.0'
//get、set...注解
implementation 'javax.annotation:javax.annotation-api:1.2'
implementation 'org.projectlombok:lombok:1.16.6'
//发布者与订阅者
implementation 'org.greenrobot:eventbus:3.1.1'
//Android开屏动画
implementation 'site.gemus:openingstartanimation:1.0.0'
//glide依赖
implementation 'com.github.bumptech.glide:glide:4.7.1'
//获取相册图片和相机
implementation 'com.jph.takephoto:takephoto_library:4.0.3'
//Gson库
implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
// Retrofit库
implementation 'com.squareup.retrofit2:retrofit:2.3.0'
// Okhttp库
implementation 'com.squareup.okhttp3:okhttp:3.1.2'
//轮播图
implementation'com.youth.banner:banner:1.4.10'
//分割Dex
implementation 'com.android.support:multidex:1.0.1'

(以上是自学安卓的时候记录下来的依赖,大佬请高抬贵手哈!)

猜你喜欢

转载自blog.csdn.net/weixin_42237913/article/details/106114825