开发者

Some android phone cannot search my app in android market [closed]

Closed. This question needs details or clarity. It is not currently accepting answers. 开发者_Python百科

Want to improve this question? Add details and clarify the problem by editing this post.

Closed 1 year ago.

Improve this question

My app somehow cannot be searched by some of the model of mobile phone. like Sony Ericsson X10 mini pro, Samsung Galaxy. Is that the problem of resolution of the screen? How do I fix this problem?


It might depend on your settings in the Android Manifest, which displays / screen sizes you support; and of course different Android versions. And in case the devices are used in different countries/networks, it might also depends if you app is free/paid. Please post your AndroidManifest.xml.

You might have or have not a section in your manifest similar to this:

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

Are the devices running the same Android version? Relevant section in the manifest might be this:

<uses-sdk android:minSdkVersion="4" />
<uses-sdk android:targetSdkVersion="8" />


I agree with Mathias : Here the link to support all screens : http://developer.android.com/guide/practices/screens_support.html

Don't forget to test all screen size on the emulator.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜