Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Drawables not Refreshing

I have this issue that is driving me crazy lately...

I have an app full of drawable assets (backgrounds, images, etc). After testing on a larger device, I found out some drawables are too small and became stretched. Then, I decided to make higher-quality versions of them and then replace them on the drawable folder. After I launch the app on the device, I noticed the drawables didn't refresh, leaving the app with the old ones. I tried to uninstall the app, no difference... after I install it again, the app comes with all the old stuff instead of the new one.

What is happening? :|

like image 409
arvere Avatar asked Jan 15 '23 13:01

arvere


1 Answers

Try Project/Clean, and deploy your application. If the problem persists, the other possibility is that you didn't split /drawable into /drawable-hdpi, /drawable-ldpi, /drawable-mdpi, /drawable-xhdpi.

like image 105
Krypton Avatar answered Jan 25 '23 14:01

Krypton