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

后端 未结 4 1888
北恋
北恋 2021-02-07 07:06

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 Galax

相关标签:
4条回答
  • 2021-02-07 07:48

    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
    
    0 讨论(0)
  • 2021-02-07 07:51

    You should check the optimization tips. It will tell you exactly what is missing in your app.

    In my particular case the message started showing up when I raised the minSdkVersion up to 19. The optimization page showed that I was missing assets designed for tablets

    0 讨论(0)
  • 2021-02-07 07:53

    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.

    0 讨论(0)
  • 2021-02-07 08:00

    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.

    0 讨论(0)
提交回复
热议问题