I have a app with a dashboard with icons. The app only has drawable-hdpi folde with the icons.
When I start both the 4.0 and 4.1 emulator and launch my app from eclipse to both of them, the quality of the icons differ extremely! It’s ugly on jellybean.
What is going on??

Partial Manifest
<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="14" />
<supports-screens
android:anyDensity="false"
android:largeScreens="false"
android:normalScreens="true"
android:smallScreens="false" >
</supports-screens>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
Remove the
supports-screentag from your manifest (specifically, theanyDensityattribute). According to the documentation:I’m not sure exactly what’s happening between 4.0 and 4.1 that would cause the difference, but for the most part setting the
anyDensitytag is a bad idea outside of very specific circumstances. As long as you’ve provided default resources (e.g. in the non-specificdrawablefolder), you won’t need to specify it.