Yesterday we updated our application (easy.go) on the Android Market, and after that we got a few messages from users of HTC Tattoo and Sony Ericsson XPeria mini that they cannot see on the Android Market.
We do not use copy protection when loading to the market, therefore, I think this is not a problem.
The first assumption is that the problem was due to the small screens. I took a look at manifest.xml. It is written there:
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>
And here are all the permissions:
<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_MOCK_LOCATION"></uses-permission>
<uses-permission android:name="android.permission.READ_PHONE_STATE"></uses-permission>
<uses-permission android:name="android.permission.RECEIVE_SMS"></uses-permission>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission>
<uses-sdk android:minSdkVersion="3"/>
Any suggestions?!
There are several large images with a resolution of 320x480 and no alternatives for them in a resolution of 240x320. Could this be a problem ?!
Is there a preview before updating the application to know for which devices it will be invisible in the market?