Skip to content Skip to sidebar Skip to footer

Android Market Shows "this Item Is Not Compatible With Your Device"

I just published an application in android market. When i tried to download my application from market in Samsung galaxy S II and some micromax devices, I couldn't find the applica

Solution 1:

Either remove the android:targetDdk version="4" or change it with the version your device is compatible with

Solution 2:

I'm surprised the Market didn't give you an error message when you uploaded your apk.

Your package name "com.sample" is so generic, it is bound to have been taken by someone else.

Solution 3:

Solution 4:

Try add this to your manifest file

<supports-screens
android:largeScreens="true"android:normalScreens="true"android:smallScreens="true"/>

Solution 5:

Move your <uses-sdk> block up above <application>. Delete <supports-screens> entirely, unless there is a screen size that your application does not support.

Post a Comment for "Android Market Shows "this Item Is Not Compatible With Your Device""