In my app, I have the following in my manifest:
<supports-screens android:smallScreens="false"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"/>
Now, in my Resource Bucket folders, (XHDPI, HDPI, MDPI & LDPI) I have provided copies of all the graphic resources scaled accordingly.
My question is, going on what I have, do I need to provide any resources in LDPI? I mean, as I'm not supporting small screens, does it follow that I no longer need to provide LDPI resources or are there medium screens out there that could still look to the LDPI bucket?
I'm asking because if I don't need these, I'd rather remove them as they're pushing my APK size up.