Reputation: 8790
Following are the features that my app is using:
Screen layouts: SMALL NORMAL LARGE XLARGE
android.hardware.location
android.hardware.screen.portrait
android.hardware.telephony
android.hardware.touchscreen
But google play is showing galaxy tab2 and some other tabs as incompatible. Can anyone tell what could be the reason.
Upvotes: 0
Views: 407
Reputation: 82553
You are asking for the android.hardware.telephony
feature, which means that the device must have the ability to make calls over the cell network. As both the Nexus 7 and the Galaxy Tab 2 are tablets, they do not have this feature.
If this is not a definite requirement for your app, make your <uses-feature>
tag as follows:
<uses-feature android:name="android.hardware.telephony" android:required="false" />
Upvotes: 3