xxxxxxxxxx
repositories {
mavenCentral()
google()
}
dependencies {
implementation 'com.github.bumptech.glide:glide:4.11.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
}
xxxxxxxxxx
dependencies {
implementation 'com.github.bumptech.glide:glide:4.11.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
}
xxxxxxxxxx
dependencies {
implementation 'com.github.bumptech.glide:glide:4.12.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
}
xxxxxxxxxx
implementation 'com.github.bumptech.glide:glide:4.12.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
xxxxxxxxxx
Glide.with(context)
.load("http://via.placeholder.com/300.png")
.into(ivImg);
xxxxxxxxxx
Glide.with(context)
.load("http://via.placeholder.com/300.png")
.into(ivImg);
xxxxxxxxxx
repositories {
google()
mavenCentral()
}
dependencies {
implementation 'com.github.bumptech.glide:glide:4.13.2'
annotationProcessor 'com.github.bumptech.glide:compiler:4.13.2'
}
xxxxxxxxxx
Glide.with(context)
.load("http://via.placeholder.com/300.png")
.into(ivImg);
xxxxxxxxxx
Glide.with(context)
.load("http://via.placeholder.com/300.png")
.into(ivImg);
Glide Dependey
xxxxxxxxxx
dependencies {
//Glide
def glide_version= "4.15.0"
implementation "com.github.bumptech.glide:glide:$glide_version"
annotationProcessor "com.github.bumptech.glide:compiler:$glide_version"
}