I have developed and tested my app on a Samsung Galaxy Tab4 10.1, and it has worked perfectly fine. It is now ready to publish to the Google play store, however when I do and find it in the app store on my Galaxy Tab4 it says that the app is not compatible with my device.
I have had a look at previous questions on here and at the documentation provided by android and Google but all the solutions I have tried haven't worked. Below is my AndroidManifest file:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:installLocation="auto" android:versionCode="#" android:versionName="#" package="#">
<uses-sdk android:minSdkVersion="15" android:targetSdkVersion="20"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />
<application android:theme="@android:style/Theme.Holo.Light" android:label="#" android:icon="@drawable/launcher_icon" />
<supports-screens android:largeScreens="true" android:xlargeScreens="true" android:normalScreens="false" android:smallScreens="false" />
Where there is a '#' above I have the correct details, I just did this to protect the client's confidentiality. Does anyone know of any other permissions etc that I need to set? With this manifest it list the TabS and Tab4 Active as supported devices but not the Galaxy Tab4 10.1, which is the main tablet we use for development.
Thanks in advance.