2
我迷路了。
我有一個Android 2.3.1(wifi only,1024 * 768)的中文平板電腦(CubeU10GT-S)。我開發了一款應用程序,並在該設備上進行了測試。但上傳市場它與我的平板電腦不兼容(可能與許多類似的)...
我請求最小的權限/功能集 - 任何人都可以告訴我爲什麼appstore過濾掉我的平板電腦?爲什麼我的應用程序不適用於Android市場中的我的設備?
這裏是清單:
<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>
谷歌沒有告訴你爲什麼?更重要的是...你問過他們嗎? – cHao
你的意思是支持?我還沒有問過他們......我不相信他們會回答任何事情,除了「檢查指南」。否則,論壇上不會有類似的問題。即使在這裏也有幾個問題 – user1390456