English 中文(简体)
甲状腺和辅助装置在 and市场上表现
原标题:Manifest and supported devices showed in android market

是否有一种工具可以测试我的和roid的表现,以了解哪些装置得到特定环境的roid市场的支持? 我希望,除了将每次测试上载到海底市场之外,还有其他一些办法。

我需要查明为什么一些小屏幕装置得不到支持,但我还没有找到理由。

我目前支持以下屏幕和Ippose,android:smallScreens。 我们应该让三星银河星座安装我的手套,但不会安装。

<supports-screens
    android:largeScreens="true"
    android:normalScreens="true"
    android:smallScreens="true"
    android:anyDensity="true" />

编辑:现行许可和特征:

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"></uses-permission>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"></uses-permission>
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"></uses-permission>
<uses-permission android:name="android.permission.CAMERA"></uses-permission>
<uses-permission android:name="android.permission.VIBRATE"></uses-permission>
<uses-permission android:name="android.permission.FLASHLIGHT"></uses-permission>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>

<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />
<uses-feature name="android.hardware.screen.portrait" required="false" />

I think I have to remove some of these- I have garbage here which is not needed anymore. Will digg into it tonight/tomorrow.

最佳回答

是否有一种工具可以测试我的和roid的表现,以了解哪些装置得到特定环境的roid市场的支持?

无,只是因为谷歌是唯一拥有所有安乐器及其能力的(公平)完整加固的公司。

如果有人创建了一个可以挤出的独立数据库(例如,可能有些是流利器),那么独立工具可以使用。

关于你的特有问题,在筛选人数之后,下一个最可能的候选人将是许可,表明装置缺乏某些必要的特征。

问题回答

与此不同,银河系统是符合南极海生委许可的。 ......

<uses-feature android:name="android.hardware.camera.autofocus" />

这一特征因违约而增加

<uses-feature android:name="android.hardware.camera" />

Here you can find more info about it: http://developer.android.com/guide/practices/compatibility.html under "Future-proofing". If you add CAMERA permission with <uses-feature android:name="android.hardware.camera" /> autofocus will not be added and it should be now compatible with your app. Hope it helps.

某些许可,如南极海生委或COARSE_LOCATION,意味着其他特征。 我发现,使我具有隐含的特性使我的申请从1 100件装置到2000年多来更加兼容。

对我来说,特别的贴标签点是摄像机和粗体地点许可所暗示的摄像机自动瞄准器和网络定位点。 克服我使用过的:

  <uses-feature android:name="android.hardware.camera.autofocus" android:required="false" />
  <uses-feature android:name="android.hardware.location.network" android:required="false" />
  <uses-feature android:name="android.hardware.wifi" android:required="false" />

这些是我在“游戏店”的游戏中所使用的环境。 我进行了8次上载尝试,3天来获得我所需要的许可。 谷歌确实应当成为这种兼容工具。

Your problem is the same as mine. Samsung Galaxy Mini is not compatible with "android.permission.CAMERA" - see answer to my question here: https://stackoverflow.com/a/8822791/385264





相关问题
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 ...

热门标签