Hey basically i done some of my testing on my HTC wildfire and the application worked fine but for some reason it is not supported in the device list is there any way i could contact google to make it supported ?

link|improve this question
feedback

1 Answer

The main reason why an app is not supported by the Wildfire is that you forgot to add compatibility for small screens to your manifest:

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

Don't blame Google ;-)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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