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.)
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.)
Add a <compatible-screens>
element to your manifest, outlining the specific screen sizes and densities that you support.
Another possible solution you could use is to add the following to manifest:
<uses-feature
android:name="android.hardware.telephony"
android:required="true" />
This will restrict the apk to being installed on devices that the ability to make phone calls(i.e. non-tablets).
CommonsWare's Answer is 100% correct.
You have other options also, Use
Or Manually filter the tablet devices in Google Play. This will be tedious task.