Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 751 Bytes

another_image_library.md

File metadata and controls

15 lines (10 loc) · 751 Bytes

Using Another Image Loader Library

By default, Image picker is using Glide as its image loader library.

You can change this by defining custom image loader. You can find the documentation in here

Next thing you wanna do is excluding Glide library from ImagePicker. You can achieve this with Gradle. Ex:

implementation("com.github.esafirm.android-image-picker:imagepicker:x.y.z") {
    exclude group: 'com.github.bumptech.glide', module: 'glide'
})

You can find more about this in here. Thanks to Galaxer 🙏