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"
}

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.