How can I make it so that my application is seen on the Android Market only by devices with mdpi and hdpi densities.
There is the <supports-screens> tag and there is the anyDensity parameter but I don’t see how I can say what I want. If I set anyDensity to false, what does that mean? Where do I specify which densities I do support?
Look at the <compatible-screens> tag in <manifest>. It allows to enumerate supported sizes and dpis:
All other combinations will be disabled.