English 中文(简体)
和机器人市场 没有显示我的应用程序在平板电脑
原标题:Android market not showing my apps in tablet

Recently i have posted my android app in to the market place. When search my app it shows and got installed in my Mobile but when search my app in Tablet its not showing the app. And i used to install directly from my account to Tablet its says that " This app is incompatible with your devices."

任何人帮助我 如何做我的应用程序 显示在平板电脑上。

最佳回答

我想你忘了把这个加到你的列表档案里了

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

刚读出 < a href=> "http:// developmenter.android.com/guide/practices/screps_support.html" rel="nofoln noreferrer" >Android Developmenters s page 支持多重屏幕大小应用程序。 参考现有的 < a href=>"https://stackoverflow.com/q/10328374/940096" >Stackoverflow 问题

问题回答
" This app is incompatible with your devices."

因为它可能是应用程序功能( 大小为“ 缩略图 ”, 就像 @SpK 说 < / em > 、 蓝牙、 3g、 Gps、 EDGE、 NFC ), 不会支持您的 Patt( Manifest 声明 ) 。

如果您仍然想要下载不兼容的应用程序, 请尝试 < a href=" http://www. redmondpie. com/ how-to- 安裝- inconsultable- apps- from- andandroid- smodal- for- unsupport- deviices/" rel=“ nofollow" > http://www. redmondpie. com/ how-to- 安裝- incompet- apps- from- and mild- smodal- for- unsupported- devits/

请 < a href=" "http:// developmenter.android.com/guide/ appendix/marked-filters.html" rel="nofollow" > 读这个 , 它解释了市场( Google Play) 过滤程序是如何根据他们在列表中所声明的内容来设置的 。

您可能忘记添加 :

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

以你们的本体盟誓,

但您是否提供了您的应用程序的平板版本, 并配有适合这些设备的适当 UI 设计? 如果您想看到用户在这些设备上采用您的应用程序, 这个问题很重要 。

“此应用程序与您的设备不兼容” 可能意味着几件事, 因为上面所有的评论都是正确的, 是的, 我已经向市场公布了平板应用软件, 并收到了相同的答复。

1: what "API LEVEL" have you defined in your manifest? 2: what "What API Level" is the device?

我问这两个重要的问题,因为我从市场收到评论的唯一时间是当我在 Windows OS 上使用 Eclipse 和 sdk 的应用程序高于我的设备时。默认情况下,如果您在 Windows OS 和 sdk 上使用 Eclipse 的默认 Api 级别为 15, 而您下载该应用程序的设备可能是 api 7 - 14 。 如果您已经跟踪了其他组成员在上面定义的所有步骤, 您应该查看您的列表, 并查看该应用程序在哪个用途- sdkk和roid: minSdkVersion 上开发的应用程序, 然后将该应用程序与您的设备 api 级别进行比较, 我向你保证, 您将会发现您的应用程序是在比您的设备高的 api 级别上开发的 。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签