4

How can I publish an application for 7 and 10 inch tablets only on playstore? I've a specific requirement to publish the application for those 2 tablets only. Is there any code or restriction on Play Console through which I can restrict other tablets and devices? I have searched in Play Console but I cannot target specifically those 2 sizes only.

rahul shah
  • 2,086
  • 2
  • 11
  • 14

1 Answers1

-1

You can programmatically check the screen size using some Java code. This post goes into the details.

When your app gets launched, check the screen size of the device. If it doesn't match your requirements, you can simply not launch your app. This is however not an ideal solution.

TVASO
  • 481
  • 3
  • 15