Reputation: 21
But on the play store my app show on Samsung s22 ultra and install successfully how to restrict app on Phone
I have created an Android application that is targeted to tablet devices only. In Android Manifest I have set the following screen support:
<supports-screens android:smallScreens="false"
android:normalScreens="false"
android:largeScreens="true"
android:xlargeScreens="true"
android:requiresSmallestWidthDp="600" />
Upvotes: 0
Views: 67
Reputation: 8806
You can manually exclude phones from Google Play Console.
Go to,
Reach and Devices -> Device Catelog -> Manage Devices -> Exclude Devices
Then add a Device Type filter as Phone.
Select all and Save.
It can take upto a few hours until changes are visible around the globe.
Upvotes: 1