我们针对我们的应用程序的上次更新导致其针对Android 1.5和Android 1.6设备进行了过滤。我们没有更改清单中的任何内容(除了更新的版本代码)。
这些类似的问题没有帮助:
Android App no longer visible by Android 1.5 on devices
Android app not appearing in Market for 1.5&1.6 devices, Bluetooth is android:required="false"
我们创建了一个带有精简版清单的测试应用程序,并使用Android 1.5 SDK进行编译。甚至这个基本的应用程序也被过滤掉我们试图在五天前联系Android Market支持,但Google明确表示他们不想向开发人员提供支持,并说我们不太可能得到回复。
以下是测试应用的完整 AndroidManifest.xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.highwaynorth.test"
android:versionCode="6"
android:versionName="6.0">
<uses-sdk android:minSdkVersion="3" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".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>
为什么要过滤?
答案 0 :(得分:0)
我们的应用程序本周在Google于10月25日向市场发布此消息后回归:
25 October 2011 - Recently published apps not appearing in Android Market
我们很失望,我们的应用程序已经从市场上消失了6个星期,而我们最后得到的解释基本上就是说“它现在已经修好”