How to filter my tablet version app in google play whcih used uses-feature telephony in android?

570 views Asked by At

I developed and android application and uploaded in google play for mobiles. Now i did the tablet version with same functionality. In my tablet version i used <uses-feature android:name="android.hardware.telephony"> attribute which is used for phone calling services. I developed my application for both calling supported and unsupported tablets.Here i want to show my tablet version for only tablets even those are enabled/disabled with calling functionality. I know one thing like below which will filter application play store and show the application only for android mobiles.

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

Is there any other way which will filter my application and make available for only tablets( calling function enabled/disabled)

Please advice me. Thanks in advance.

1

There are 1 answers

4
Budius On

you can put on your manifest the support screen size xlarge and then the phone version you put support screen size small, medium, large. Also you can check on the google play publish site the multiple APKs thing. I never used by I reckon it's used exactly for that.