Skip to content Skip to sidebar Skip to footer

Android App Incompatibility With Nexus 7

The play store is showing that my app is not compatible with the Nexus 7 (older model with only front-facing camera, ME370T). My app does require a camera but can use the front-fa

Solution 1:

It seems like the app store may ignore the "any" specification for uses-feature. I changed my camera requirement to

<uses-featureandroid:name="android.hardware.camera"android:required="false" />

and it seems like it's supported now.

Post a Comment for "Android App Incompatibility With Nexus 7"