Hi I have uploaded my app to Google Play but however it says it's incompatible with my own device. I am struggling to understand why as I could run it fine during development. I have also tried downloading it on another device and it is also incompatible.
The XML file is exactly the same format as I have used for previous apps. No special permissions or anything. The file size is 3.5M. Has this happened to anyone before? Thanks in advance.
Edit: Also it says there are 0 excluded devices.
<?xml version="1.0" encoding="UTF-8"?>
-<manifest android:versionName="1.0.1" android:versionCode="2" package="com.boxing.punch.android" xmlns:android="http://schemas.android.com/apk/res/android">
<uses-sdk android:targetSdkVersion="19" android:minSdkVersion="8"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<application android:theme="@style/GdxTheme" android:label="@string/app_name" android:icon="@drawable/ic_launcher" android:allowBackup="true">
<activity android:name="com.boxing.punch.android.AndroidLauncher" android:label="@string/app_name"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize" android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version"/>
</application>
</manifest>