1

i put my appliation in Android Market.It is showing This item is not compatible with your device for some devices like Galaxy Y( Samsung GT-S5360) and HTC Explorer and those devices have v2.3.5.

enter image description here

and my Manifest file is like below::

 ................
 ................
 android:versionCode="2"
android:versionName="1.0.1" >

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="10" />
KCRaju
  • 544
  • 3
  • 7
  • 21

1 Answers1

0

It's because of your permissions.

See more about this here:

It's difficult to say exactly which ones are causing the problems, I think it could be ACCESS_FINE_LOCATION and CAMERA but I have no access to these devices and no way to be sure.

In all cases the fix is not to remove the permissions but also use the <uses-feature> tags to ensure the market knows these are not requirements for your app.

Community
  • 1
  • 1
Ken Wolf
  • 23,133
  • 6
  • 63
  • 84