Library for AndroidX same as Glide

3.4k Views Asked by At

Can anyone let me know about any image loading library for AndroidX that can work the same as Glide? I've searched for other tactics, but nothing is valuable.

build.gradle(Module: App)

I commented Glide library coz it's not syncing properly.

    implementation fileTree(dir: 'libs', include: ['*.jar'])
        implementation 'androidx.appcompat:appcompat:1.1.0-rc01'
        implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta2'
        implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0-alpha1'
        testImplementation 'junit:junit:4.12'
        androidTestImplementation 'androidx.test:runner:1.3.0-alpha02'
        androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0-alpha02'

        //AndroidX
        implementation "com.google.android.material:material:1.1.0-alpha02"
}

enter image description here

2

There are 2 best solutions below

0
Vishal Nagvadiya On

I think you have to build the project on online mode at lease once after adding the library and make it offline, it will solve your issue and Yes, Glide is work perfectly with AndroidX.

1
maniaq On

implementation 'com.github.bumptech.glide:glide:4.10.0' works with androidx Other : picasso , Fresco are same as Glide(with a little differences) and also UIL(Universal Image Loader).