关于android:记录一下自己用的第三方框架

47次阅读

共计 612 个字符,预计需要花费 2 分钟才能阅读完成。

BackgroundLibrary:通过标签生成 shape

implementation "androidx.appcompat:appcompat:$supportVersion"  //for androidx
implementation 'com.noober.background:core:1.6.5'

MagicIndicator:指示器

repositories {
    ...
    maven {url "https://jitpack.io"}
}
implementation 'com.github.hackware1993:MagicIndicator:1.7.0' // for androidx

AnyLayer:浮层(弹窗)

allprojects {
    repositories {maven { url 'https://www.jitpack.io'}
    }
}
implementation 'com.github.goweii:AnyLayer:3.6.0-androidx'

androidautosize:屏幕适配计划

`implementation 'me.jessyan:autosize:1.2.1'`

glide:图片加载

implementation 'com.github.bumptech.glide:glide:4.12.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'

正文完
 0