【发布时间】:2012-05-31 17:46:13
【问题描述】:
我迷路了。
我有一台装有 Android 2.3.1 的中文平板电脑 (CubeU10GT-S)(仅限 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>
【问题讨论】:
-
谷歌没有告诉你为什么?更重要的是……你问过他们吗?
-
你的意思是支持?我还没有问过他们……我不相信他们会回答任何问题,除了“检查指南”。否则论坛上不会有类似的问题。即使在这里也有几个类似的问题
标签: android filter tablet google-play