We have an android application, manifest of which sets the following configurations:
minsdkVersion = \"4\"
Do you request any telephony permissions in your app, e.g. READ_SMS
or CALL_PHONE
? If so, then the Market will infer that telephony support is required, which means it won't be available for the Xoom.
If this is the case, then you need to update your AndroidManifest.xml to make the telephony features optional:
You'll also need to make sure your app copes gracefully when the telephony features aren't present!
See my answer here for more detail on how to check what devices the Market is offering your app on.
The android:xlargeScreens="true"
permission is not required, unless you've explicitly included the [supports-screens][2]
in your AndroidManifest.xml (which you shouldn't, as the default will make it available on all screen sizes).