2

我迷路了。
我有一台装有 Android 2.3.1(仅限 wifi,1024*768)的中国平板电脑(CubeU10GT-S)。我开发了一个应用程序,该应用程序也在此设备上进行了测试。但是上传到市场上它与我的平板电脑不兼容(并且可能与很多类似的平板电脑兼容)......
我要求最少的权限/功能集 - 谁能告诉我为什么 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>
4

1 回答 1

0

我应该关闭复制保护。当我这样做时(几个小时过去了),我的应用程序与我的 2 台设备兼容(第 3 台的 sdk 太旧了)

于 2012-06-01T09:04:36.403 回答