Question:
Does anyone have a quick way for removing all the extra resources in an Android application that are not being used(referenced) in my code?
Explanation:
I've noticed that once I finally get one of my Android applications ready to ship, there are usually a lot of unwanted resources within my application. I usually have some extra drawables that aren't being used because I switched them out with new ones. I also have extra String resources and even some extra layouts that aren't used anywhere in my application (there is no reference to them in the java code). I want my applications to take up the least amount of space possible on the user's phone.