我的应用程序不使用冰淇淋三明治市场显示 [英] My App not shown in market using ice cream sandwich

查看:119
本文介绍了我的应用程序不使用冰淇淋三明治市场显示的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在市场上应用5个多月了,我买冰淇淋OS平板,所以我就成了目瞪口呆未显示冰淇淋OS我的应用程序时发现,所以我试图修复它。

i have application on the market for more than 5 months, and i bought tablet with ice cream os, so i became stunned when notice my app not shown for ice cream os, so i tried to fix it

<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="15"/>

<compatible-screens>
    <screen android:screenSize="small" />
    <screen android:screenSize="normal" />
    <screen android:screenSize="large" />
    <screen android:screenSize="xlarge" />
</compatible-screens>

但应用程序还是没有出现,任何有用的提示?

but the application still not appearing, any helpful hints?

更新

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

我的平板电脑不具备GPS功能,但包含谷歌位置服务

My tablet doesn't have GPS, but contains "Google Location Service"

更新

我的清单文件:
    

My Manifest file :

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

<uses-feature android:name="android.permission.INTERNET" android:required="true"/>
<uses-feature android:name="android.permission.ACCESS_NETWORK_STATE" android:required="false"/>
<uses-feature android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:required="true"/>
<uses-feature android:name="android.permission.ACCESS_COARSE_LOCATION" android:required="false"/>

和还应用没有出现市场!

and still the app not appearing on the market!!

更新

屏幕布局:小中大XLARGE

Screen layouts: SMALL NORMAL LARGE XLARGE

所需的设备功能

android.hardware.screen.portrait

android.hardware.screen.portrait

android.hardware.touchscreen

android.hardware.touchscreen

android.permission.INTERNET对

android.permission.INTERNET

android.permission.WRITE_EXTERNAL_STORAG​​E

android.permission.WRITE_EXTERNAL_STORAGE

此应用程序可供超过0的设备。

问题解决了,最后清单:

<uses-sdk
    android:minSdkVersion="7"
    android:targetSdkVersion="15" />

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

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

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

现在应用程序搜索列表上出现的冰淇淋:)

感谢您​​的帮助球员:)

推荐答案

如果你研究这个网页:的使用特征元素,你会看到一个的使用许可权的一个清单元素可能的意味着某一个硬件功能的要求

If you study this page : uses feature element, you will see that a uses-permission element in a manifest may imply that a certain hardware feature is required.

ACCESS_FINE_LOCATION是这些权限之一,因此它只会显示为可与GPS

ACCESS_FINE_LOCATION is one of those permissions, so it will only show as available for devices with a GPS

这篇关于我的应用程序不使用冰淇淋三明治市场显示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆