I think Android 1.5 runs on these devices.
From the Docs on "Ensuring Better Device Compatibility with Resources" :
Providing default resources is important not only because the application may work in a configuration that you did not expect, but also because newer versions of Android sometimes add configurations that older versions do not support. If you use the new resource qualifier, but keep the code compatible with older versions of Android, then when the older version of Android launches your application, it will fail if you do not provide default resources because it cannot use the resources named in the new qualifier. For example, if your minSdkVersion is set to 4, and you have your available resources in night mode (night or night, have been added to API level 8), then a level 4 device cannot access your resource resources and fail. In this case, you probably do not want your resources to be unavailable by default, so you should exclude this qualifier so that your resources are either stretchable or we draw night /.
Since you use -hdpi -qualifier, this can be a problem, because those that are present in Android 1.6 (API level 4) and therefore not available in Android 1.5
See this topic: Drawable-hdpi, Drawable-mdpi, Drawable-ldpi Android
Thus, providing some backup resources in the res/drawable may solve your problem.
There, the seams will be an error based on my original idea, which is described here: NotFoundException and FileNotFoundException when running the application on Android 1.5
This means that an error occurs for the next resource. Therefore, do not forget to provide a backup copy for each available in the res/drawable .
This applies to Android 1.5, I'm not sure if this is still a problem in Android 2.3, but that means that different manufacturers handle these things differently.
Lukas Knuth
source share