我们正在尝试推出我们的第一个和机器人应用程序。 它在10.1到3.1.1的各种屏幕尺寸模拟器中测试精细。 然而, 当我们试图将Apk上传到网站时, 它表明我们只能用于240个设备, 并且随机查看诸如摩托罗拉等类别, 没有列出任何手机设备 。
此外,在手机和机器人电话上也找不到申请。
是因为我需要触摸屏吗?
This is what lists on the developer console: Screen layouts: SMALL NORMAL LARGE XLARGE Screen densities: Required device features android.hardware.touchscreen
这是我的清单文件:
<?xml version="1.0" encoding="utf-8" ?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.serioustangents.spellingquiz" android:versionCode="4" android:versionName="1.2.2">
<uses-sdk android:minSdkVersion="11" />
<supports-screens android:smallScreens="True" android:normalScreens="True" android:largeScreens="True" android:xlargeScreens="True" android:anyDensity="true" />
- <application android:icon="@drawable/beesquare" android:label="@string/app_name" android:name="com.serioustangents.spellingquiz.SpellingBeeApp">
- <activity android:name=".SpellingQuiz" android:label="@string/app_name">
- <intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
- <activity android:name=".gameplay" android:label="@string/app_name">
- <intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
- <activity android:name=".ChangeUsername" android:label="@string/app_name">
- <intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
- <activity android:name=".openingScreen" android:label="@string/app_name">
- <intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
- <activity android:name=".closingScreen" android:label="@string/app_name">
- <intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
- <activity android:name=".HighScoreScreen" android:label="@string/app_name">
- <intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
- <activity android:name=".summaryScreen" android:label="@string/app_name">
- <intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>
为何系统不允许我为电话设置这个?