3

我的应用程序在 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>
4

2 回答 2

2

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

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

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

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

现在它在 Google play 中可见。

还要检查Google Play 上的过滤器

希望这可以帮助。

于 2013-05-20T06:36:13.500 回答
1

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

于 2013-05-25T23:24:33.367 回答