I have uploaded an app to the Google Play Store. It's available for tablets only. This is in my manifest.xml:
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-feature
android:name="android.hardware.camera"
android:required="true" />
<supports-screens
android:smallScreens="false"
android:normalScreens="false"
android:largeScreens="true"
android:xlargeScreens="true"
android:requiresSmallestWidthDp="600" />
Someone with a Samsung Galaxy View SM-T670 is trying to download my application. This tablet is 18.4 inch but my app is not compatible with this device. Why is it not compatible?
I checked, the device has a camera, so that can't be the problem.
I can't think of anything else because it has everything my manifest wants, but when I look the device up in the Google Developer Console, it says:
This device is not supported in your app's APK-manifest. Therefore, users of this model can not install your app.
Can anyone help me with this?
EDIT: the tablet has a higher SDK then the minimum required SDK.
I don't think it does matter which country the user comes from because when I look in the Google Developer Console, it also shows the message that the app is not compatible with that device. So my guess is that country doesn't matter?