在git hub上下载的开源glide到底怎么使用,要解压到哪个文件夹吗?
http://bumptech.github.io/glide/doc/download-setup.html
简单就是使用包管理器加载Gradle或者Maven
use Gradle:
repositories {
google()
mavenCentral()
}
dependencies {
implementation 'com.github.bumptech.glide:glide:4.13.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.13.0'
}
Or Maven:
<dependency>
<groupId>com.github.bumptech.glide</groupId>
<artifactId>glide</artifactId>
<version>4.13.0</version>
</dependency>
<dependency>
<groupId>com.github.bumptech.glide</groupId>
<artifactId>compiler</artifactId>
<version>4.13.0</version>
<optional>true</optional>
</dependency>