Rookie
Rookie

Reputation: 8790

Google play showing some devices as incompatible

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

Answers (1)

Raghav Sood
Raghav Sood

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

Related Questions