[오픈소스] glide
2020. 7. 14. 15:53ㆍ개발자료/Android
반응형
# Gradle
repositories {
google()
jcenter()
}
dependencies {
implementation 'com.github.bumptech.glide:glide:4.11.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
}
# Maven
<dependency>
<groupId>com.github.bumptech.glide</groupId>
<artifactId>glide</artifactId>
<version>4.11.0</version>
</dependency>
<dependency>
<groupId>com.github.bumptech.glide</groupId>
<artifactId>compiler</artifactId>
<version>4.11.0</version>
<optional>true</optional>
</dependency>
# glide
https://github.com/bumptech/glide
반응형
'개발자료 > Android' 카테고리의 다른 글
[앱배포] PlayStore (0) | 2020.07.15 |
---|---|
ImageView - scaleType (0) | 2020.07.14 |
[Vungle] 광고가 로드 되지 않는 문제 (2) | 2020.07.13 |
GAID(Google’s advertising ID)값 가져오기 (0) | 2020.07.12 |
[오픈소스] Android Asynchronous Http Client (0) | 2020.07.10 |