I have an app in the android market that is reporting incomparability and so cannot be installed on a Samsung Galaxy Mini. Developer Console says that it is due to my manifest settings.
My manifest is very light : android 1.5 or above and bare bones permissions so I'm surprised that this is the problem.
My question is in 2 parts:
Are there any tools to help diagnose device and app compatibility.
What is the problem with my manifest?
Here is my manifest
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.basl.bugsy.free"
android:versionCode="8"
android:versionName="8"
installLocation="preferExternal">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".BugsyFreeGame"
android:label="@string/app_name"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="3" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>