How do I restrict my Android app to non-tablets?

android, download, google-play

Solution

Add a `<compatible-screens>` element to your manifest, outlining the specific screen sizes and densities that you support.

Problem

I have seen this link which show how I can restrict download to only tablets, but I am looking the other way round. How can I restrict my app to only download on mobiles and not on tablets? (It's the requirement from the client.)

Original source

Related problems