Uzzwal
Uzzwal

Reputation: 13

shows incompatible version for your android mobile

For my application min sdk version is 11 and target sdk version is 17. but still it shows this app incompatible for android 4.0 and android 4.2 what might be the issue ??

check this link.. https://play.google.com/store/apps/details?id=spy.cam.unibera

Upvotes: 0

Views: 79

Answers (2)

Vinayak Bevinakatti
Vinayak Bevinakatti

Reputation: 40503

Since you have added <uses-feature android:name="android.hardware.camera.autofocus" /> Google play will filter the device which doesn't support camera auto focus feature. Example : Samsung galaxy mini does not have auto focus feature.

try adding <uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>

Note : <uses-permission android:name="android.permission.CAMERA"/> which by default include auto focus feature true, so you have to add <uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/> if you use that too.

Upvotes: 1

Arnab Bhagabati
Arnab Bhagabati

Reputation: 2715

Have you run a lint check for API's?

May be you are using a android API method/class somewhere which is not available in Android 4.0/4.2.

Check out this link to know about about lint. There are other resources available too, just look around.

Upvotes: 0

Related Questions