How To Make Android Phonegap Available For Tablets?
I just created an Android application using Phonegap and deployed it to the store. It simply shows the content of a website. The problem I'm having is this application is visible t
Solution 1:
Based on what I can see in the Play Store, you have the RECORD_AUDIO
permission in your manifest. By default, that means that the device has to have a microphone, and some tablets will not. Consider adding:
<uses-featureandroid:name="android.hardware.microphone"android:required="false" />
Similarly, you have the RECEIVE_SMS
permission, which by default requires the device to have telephony capability, and most tablets do not. Please consider adding:
<uses-featureandroid:name="android.hardware.telephony"android:required="false" />
And so on.
I recommend that you compare your permissions with the instructions in the documentation to see what else you might need to add: http://developer.android.com/guide/topics/manifest/uses-feature-element.html#permissions
Post a Comment for "How To Make Android Phonegap Available For Tablets?"