-
Notifications
You must be signed in to change notification settings - Fork 110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Crashes when used with Glide version 4x #51
Comments
Did you find any solution? I am facing the same issue. |
Same issue |
Decarde your glide version in gradle to |
Is there a way to update this library to v4 ? |
I tried exclude glide from dependency but it didn't work either. I am using surveshoeb's solution at the moment |
The only solution i found is downloading the source code and implementing it as module in android studio . Then in gradle use latest version of glide. |
Yeap you can also do that |
For now I had only one solution, replaced this library with other library which using latest glide version, as I need to use latest glide in my project as well as so other dependency library |
Any suggest of other library? |
forked and rescued the library. Now it's compatible with api 29 and most importantly glide is updated to v4.12.0 |
I am using Glide in my project, if I use version 3x then it works fine but if I use version 4x then the app gets crashed as soon as the image selector activity is launched.
This is the line which shows the error:-
Glide.with(this.context).load(((Album)this.arrayList.get(position)).cover).placeholder(drawable.image_placeholder).centerCrop().into(viewHolder.imageView);
The text was updated successfully, but these errors were encountered: