为什么我的应用程序不适用于Android市场中的设备?

时间:2012-05-31 17:46:14

标签: android filter tablet google-play

我迷路了。
我有一个中文平板电脑(CubeU10GT-S)与Android 2.3.1(仅限wifi,1024 * 768)。我开发了一款应用程序,该应用程序也在此设备上进但是上传到市场上它与我的平板电脑不兼容(并且可能与很多类似的平板电脑兼容)...... 我要求最少的权限/功能 - 任何人都可以告诉我为什么appstore过滤掉我的平板电脑?

这是清单:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="indigowind.spyprofile"
      android:versionCode="4"
      android:versionName="1.3">

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

    <uses-permission android:name="android.permission.INTERNET" />

    <uses-feature android:name="android.hardware.screen.landscape" android:required="false"/>
    <uses-feature android:name="android.hardware.touchscreen" android:required="true"/>

    <application 
        android:icon="@drawable/icon" 
        android:label="@string/app_name"
        android:debuggable="false">
        <activity 
            android:name="SpyProfileActivity"
            android:label="@string/app_name"
            android:screenOrientation="landscape">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity            
            android:configChanges="keyboard|keyboardHidden|orientation"
            android:name="com.google.ads.AdActivity" 
        />
    </application>

    <supports-screens 
        android:largeScreens="true" 
        android:normalScreens="true" 
        android:smallScreens="true"
        android:resizeable="true"
        android:anyDensity="true"  />
</manifest>

1 个答案:

答案 0 :(得分:0)

我应该关闭防止复制。当我这样做(并且几个小时过去了),我的应用程序变得与我的设备兼容(第三个有太旧的sdk)