Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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? do you guys know how to fix this problem?

regards penny

share|improve this question

2 Answers

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" />
share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.