English 中文(简体)
是什么让我只能用240个平板电脑 没有电话?
原标题:What in my manifest fle is keeping me limited to 240 tablet devices, with no phones?

我们正在尝试推出我们的第一个和机器人应用程序。 它在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>

为何系统不允许我为电话设置这个?

最佳回答

您的 MinSdkVersion 设置为 11, 即 Honeycomb 。 没有一部手机运行Honecomb, 因为它只是安卓的平板板块。 请尝试将其设置更低 。 详情请查看 < a href=" http:// developmenter.android.com/ guide/ appendix/ apid- levels. html# intro < / a> 。

问题回答

您的 MinSdkVersion 是 11, 也就是 3. 0 honeycomb 。 您的应用程序将只能通过使用 honeycomb 的平板电脑以及拥有 4. 0 (ICS) 或以上 的电话和平板来显示。 绝大多数电话现在都在运行 2. 2 或 2. 3 。





相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...

热门标签