道に迷いました。Android 2.3.1(wifiのみ、1024 * 768)を搭載
した中国のタブレット(CubeU10GT-S )を持っています。このデバイスでもテストされたアプリを開発しました。しかし、市場にアップロードされたのは私のタブレットと互換性がありません (そして、多くの同様のタブレットと互換性がある可能性があります)...
最小限の権限/機能のセットを要求します-アプリストアが私のタブレットを除外する理由を誰か教えてもらえますか?
マニフェストは次のとおりです。
<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>