Play store reports “Your device isn't compatible with this version” but it installs via adb just fine on Nexus7

前端 未结 4 644
眼角桃花
眼角桃花 2020-12-06 01:23

I have an app I released to a private Google Play beta. I can install this exact same APK to my Nexus 7 just fine with

adb pm install

but thr

4条回答
  •  执念已碎
    2020-12-06 02:07

    You should read/follow this link from Reto Meier.

    As said in the link from now on you need to specify your app features.

    Basically a quick solution is to run aapt dump badging {your apk} and verify which features your app is using. Then add the ones that do not affect your app usability to your manifest with required field set to false. e.g.

    That should be enough.

提交回复
热议问题