【问题标题】:Application is suddently not compatible with tablets on Google Play应用程序突然与 Google Play 上的平板电脑不兼容
【发布时间】:2013-05-20 06:19:28
【问题描述】:

我的应用程序在 Google Play 上“可见”。我没有进行任何更改(我没有上传新的 apk)并且应用程序突然与平板电脑不兼容。感谢您的帮助。

看看很简单的清单:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="fly.is.fun.unlocker"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="7"
    android:targetSdkVersion="7" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="fly.is.fun.unlocker.MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

</manifest>

【问题讨论】:

  • 同意@GaryWong,没有理由你应该瞄准 API 7。你正在抛弃硬件加速等等。

标签: android compatibility tablet


【解决方案1】:

请检查它是否在任何设备或某些特定设备上不可见。

我遇到了同样的问题。但那是 Tab2 特有的。 因为我使用的是 CAMERA 权限,而 Tab2 没有相机自动对焦。

所以我在 AndroidManifest 文件中添加了以下行,然后将新的 apk 上传到市场。

<uses-feature android:name="android.hardware.camera.autofocus" android:required="false" />

现在它可以在 Google play 中看到了。

同时检查Filters on Google Play

希望这会有所帮助。

【讨论】:

  • 谢谢 - 但我不使用任何相机、gsm、ets - 什么都没有
  • 您是否检查过它是否在任何设备或某些特定设备上不可见?
  • java文件只有几行。 PackageInfo pinfo = getPackageManager().getPackageInfo(getPackageName(), 0);
  • 当我检查它时 Google Play 开发者控制台:支持的设备 2931,排除设备 0
  • 这也发生在我身上。 FLY is FUN unlocker这是你的应用吗??
【解决方案2】:

在开发者控制台中,您只能看到小、正常、大。您可以尝试添加值大于或等于 11 的 android:targetSdkVersion

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2013-12-21
    • 2014-08-14
    • 1970-01-01
    • 2017-07-26
    • 1970-01-01
    • 2014-09-14
    相关资源
    最近更新 更多