【发布时间】:2020-09-19 17:27:29
【问题描述】:
当我从虚拟设备访问 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 似乎得到了支持。
我还应该去哪里看?
【问题讨论】:
标签: android google-play apk genymotion apktool