我們的應用程序的上次更新導致它針對Android 1.5和Android 1.6設備被濾除。我們沒有改變我們的清單中的任何內容(除了更新後的版本代碼)。爲什麼我的應用會針對Android 1.5和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編譯它。即使這個基本的應用程序被過濾掉。我們在5天前嘗試聯繫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>
這是爲什麼被過濾?