Google play says "This app may not be optimized for your device", when I access app page with my tablet

29,950

Solution 1

This is the same as the old "Designed for phones" message. The guidelines for getting your app marked as good tablet app quality are here.

Solution 2

You need to submit a least one 7-inch tablet and one 10-inch tablet screenshots in your store listing on your Google Play Console.

For your app to be showcased in the 'Designed for tablets' list in the Play Store, you need to upload at least one 7-inch and one 10-inch screenshot. If you previously uploaded screenshots, make sure to move them into the right area below.

It's not clearly written that this is related to the message `This app may not be optimized for your device. But I have submitted 7-inch and 10-inch screenshots and as soon as the update were live, the message disappeared.

Solution 3

Google's quality guidelines say "For apps targeting minSdkVersion value less than 13, a <supports-screens> element must be declared with both android:largeScreens="true" and android:xlargeScreens="true"." This goes into the <manifest> element of AndroidManifest.xml, e.g.:

<manifest xmlns:android=…..
    <supports-screens android:largeScreens="true" android:xlargeScreens="true" />
etc
Share:
29,950
Arthur Figueiredo Nunes
Author by

Arthur Figueiredo Nunes

Android, Magento, PHP, JavaScript

Updated on June 07, 2020

Comments

  • Arthur Figueiredo Nunes
    Arthur Figueiredo Nunes about 4 years

    When I access the page of my app in Google play.

    I get the following message: "This app may not be optimized for your device"

    I am testing with a Samsung Galaxy Tab4 10.1 - matissewifikx Android Version 5.0.2

    My app is designed for tablet.

    How can I tell google that my app is for tablet and remove this message?

  • Arthur Figueiredo Nunes
    Arthur Figueiredo Nunes over 6 years
    in my case is a google play bug, some time after the publication the message disappeared
  • Simon
    Simon over 5 years
    Although, the play store pages of my apps had 7' and 10' size screnshots, the messa ge 'not optimized for tablet' appeared a while ago. And that answer solve my issue. Thank you.
  • B.shruti
    B.shruti almost 5 years
    In my case I have added 10 inches,7 inches, and mobile phone screenshots, still getting the same message.
  • Ganesh Krishnamoorthy
    Ganesh Krishnamoorthy over 3 years
    did you find any solution of the same @B.shruti