xxxxxxxxxx
dependencies {
implementation 'com.github.bumptech.glide:glide:4.11.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
}
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.12.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
}
xxxxxxxxxx
repositories {
google()
mavenCentral()
}
dependencies {
implementation 'com.github.bumptech.glide:glide:4.13.2'
annotationProcessor 'com.github.bumptech.glide:compiler:4.13.2'
}
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"
}
xxxxxxxxxx
compile('com.github.bumptech.glide:glide:4.4.0@aar') {
transitive = true;
}
xxxxxxxxxx
compile('com.github.bumptech.glide:glide:4.4.0@aar') {
transitive = true;
}