Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android app Only For Phones

Is it possible to create Android app which can be downloaded from google play only by phone not tablet?

like image 513
user1654667 Avatar asked Nov 27 '22 17:11

user1654667


1 Answers

The answer for this always brings up the question of what you define as a "tablet". Do you include things like the Galaxy Note? It's still technically a phone but it's kind of on the borderline. My question would be what conditions make you want to restrict it? If you simply want to require that it be able to make calls, you can add a feature tag to your manifest:

<uses-feature android:name="android.hardware.telephony"/>

Which will require the device to have the dialer and a data network (which should exclude a large majority of tablet devices).

like image 150
Kevin Coppock Avatar answered Dec 15 '22 19:12

Kevin Coppock