在git hub上下载的开源glide到底怎么使用,要解压到哪个文件夹吗?
1条回答 默认 最新
po破小孩 2022-03-21 22:36关注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>评论 打赏 举报解决 1无用