当我从虚拟化设备上访问Google Play时,几个常见的应用程序不可用,因为它们与v-device不兼容。
我想知道哪一个是缺少的设备功能。因此,我使用云服务https://apps.evozi.com/和兼容设备下载了APK。然后,我通过Apktool提取并解密了AndroidManifest.xml,使用:
apktool d myapp.apk我在里面寻找uses-feature
grep '<uses-feature' AndroidManifest.xml这就给出了:
<uses-feature android:name="android.hardware.camera" android:required="false"/>
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
<uses-feature android:glEsVersion="0x00020000" android:required="true"/>然而,自Genymotion v2.16以来,似乎支持OpenGL ES。
我还应该去哪里看呢?
发布于 2020-09-29 14:55:23
应用程序在Genymotion的Play Store上不可用有以下几个原因:
没有ARM翻译工具的
https://stackoverflow.com/questions/63971530
复制相似问题