library dead?
so this library is dead? Please remove it from github then.
Your app badly needs library upgrades:
+--- com.github.darsh2:MultipleImageSelect:v0.0.4 | +--- com.github.bumptech.glide:glide:3.6.0 -> 4.11.0 | | +--- com.github.bumptech.glide:gifdecoder:4.11.0 | | | --- androidx.annotation:annotation:1.0.0 -> 1.1.0 | | +--- com.github.bumptech.glide:disklrucache:4.11.0 | | +--- com.github.bumptech.glide:annotations:4.11.0 | | +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 () | | +--- androidx.vectordrawable:vectordrawable-animated:1.0.0 -> 1.1.0 () | | --- androidx.exifinterface:exifinterface:1.0.0 | | --- androidx.annotation:annotation:1.0.0 -> 1.1.0 | --- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
especially Glide should be using version 4.11 by now. Thanks.
hello dude, I have the same problem, I need multipleimage as well, but Glide 4.11 is essential for other part of my project. Could you find any solution for that? I read on some sites, somehow we can exclude the glide from the third part library { exclude group: "com.github.bumptech.glide" } but it doesn't work for me, I have no idea what to do.
I didn't further look into a solution as I am still busy with other things right now. But it seems like there's not going to be an update any time soon. You can either fork the project and update the libraries yourself or find a different library :) anyways if you decide to fork it please let me know so I can use it in the future, too (I probably will search for a different more active library though).
Currently I am solved my problem, that I used Picasso instead of Glide, but it's not the best option, because Glide has some great asycnronous functionality. But right now I am good with Picasso, but it's really not the most effective way to solve it. I thought the same, download the library and manually upgrade the dependency.
Best wishes dude
Dominik [email protected] ezt írta (időpont: 2020. júl. 10., P 9:05):
I didn't further look into a solution as I am still busy with other things right now. But it seems like there's not going to be an update any time soon. You can either fork the project and update the libraries yourself or find a different library :) anyways if you decide to fork it please let me know so I can use it in the future, too (I probably will search for a different more active library though).
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/darsh2/MultipleImageSelect/issues/60#issuecomment-656520453, or unsubscribe https://github.com/notifications/unsubscribe-auth/ANEAPPFXIWK7F4CLBTJS2YDR224VDANCNFSM4KGZIMMA .
forked and rescued the library. Now it's compatible with api 29 and most importantly glide is updated to v4.12.0
implementation 'com.github.sjd753:MultipleImageSelect:1.0.1'
@sjd753 since you don't have Issues open on your fork, just wanted to drop a line and say thanks for reviving this.
I had to add implementation 'com.github.bumptech.glide:glide:4.12.0' to my build.gradle for some reason, but after your fork worked fine. :)
Cheers