Application does not show up in Android Market for Motorola XOOM tablet

后端 未结 5 1577
面向向阳花
面向向阳花 2021-01-04 10:37

We have an android application, manifest of which sets the following configurations:

minsdkVersion = \"4\"



        
5条回答
  •  再見小時候
    2021-01-04 11:08

    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).

提交回复
热议问题