Exclude predefined resource in apk file
I created an empty project with Android Studio. And then look at the generated apk file inside this file, which I see: in the res / drawable folder there are many unwanted files, such as: abc_ic_clear_holo_light.xml, abc_ic_clear.xml, and in the res / drawable-mdpi-v4 folder there are many unwanted images, such as: abc_ab_bottom_solid_dark_holo.9.png, abc_ab_bottom_solid_light_holo.9.png.
- How to delete all these files?
- How to disable the creation of drawable-hdpi, drawable-mdpi-v4 (because I use webview to display the ui of the application, so I don't need multiscreen support with native android)
source
share