APK更新平板电脑,还是说"专为手机"是说、专为、平板、电脑

2023-09-05 04:23:22 作者:无药可医

我昨天发布了更新的APK(的https:/ /play.google.com/store/apps/details?id=nu.heka.tinnitusrev2 ),并在此更新我增加了对平板电脑的支持。

I published an update to an apk yesterday (https://play.google.com/store/apps/details?id=nu.heka.tinnitusrev2), and in this update I added support for tablets.

问题是,我仍然有一个丑陋的专为手机 - 品牌时,我期待在Play商店中的应用程序在我的平板电脑。

The problem is I still have that ugly "Designed for phones"-brand when I look up the app in Play Store on my tablet.

下面是我做的步骤:

7和10片在更新截图(无论是本地化版本和国际) 使用sw600dp和sw720dp预选赛 在更新版本$ C $清单中 c和名称 在APK细节表明,它支持各种规模小 - XLARGE Updated screenshots for 7" and 10" tablets (Both the localized version and international) use sw600dp and sw720dp qualifiers updated versioncode and name in manifest apk details shows that it supports all sizes small - xlarge

屏幕截图片显示在我的平板电脑,所以我不知道为什么它仍然得到了专为手机标记。

The screenshots for tablets are shown on my tablet so I don't get why it still gets the Designed for phones tag.

什么我错过了或者这只是我不得不等待了呢?

Anything I missed or is this just something I have to wait out?

编辑:

我在平板清单看到,我应该声明:

I see at Tablet checklist that I should declare:

      <supports-screens
    android:largeScreens="true"
    android:xlargeScreens="true"
    />

但它也说,minSdk应该是11,如果我理解正确的(?!)我有minSDK 9和一些用户有那些老设备。所以,我不能让我的应用程序&LT; 11摆脱了邮票?

but it also says that minSdk should be 11 if I understand correctly(?!) I have minSDK 9 and some users that has those old devices. So I can't have my app < 11 to get rid of that stamp?

推荐答案

添加支持解决了这个问题,我的平板电脑的应用程序现在显示为平板电脑进行了优化,这必须为针对API和其中所有的应用程序进行; 13:

Adding the support solved this issue and my tablet app now appears as tablet optimized, this must be done for all apps targeting api < 13:

<supports-screens
  android:largeScreens="true"
  android:xlargeScreens="true"
/>