17

我在谷歌搜索了很多,但没有希望,如何在 Windows 中检查 Bluestacks 模拟器的操作系统版本?YouTube 中有一个视频用于检查 bluestack 版本,但不是其中使用的 Android 版本。我去了设置 - > 高级设置,但没有与About在 Android 模拟器中找到的选项卡相对应的选项卡,就像在 Genymotion 模拟器的情况下一样。

4

5 回答 5

21

无需安装任何应用程序即可更轻松地了解 android 版本。

有一些脚本 (php/js) 可以在访问网站时检测您的 android 版本:

尝试; http://demo.mobiledetect.net/或; http://detectmobilebrowsers.com/

于 2016-04-08T10:00:51.250 回答
19

从 Play 商店安装终端模拟器,打开应用程序并输入:

getprop ro.build.version.release 你会得到类似的东西:4.4.4对于 KitKat。

getprop ro.build.version.sdk获取将返回的 sdk 版本19

于 2015-05-15T12:00:35.670 回答
10

在 Bluestacks 中打开浏览器并转到http://demo.mobiledetect.net

我已经在已知 Android 版本的多台设备上对此进行了测试,结果是准确的。目前以 v4.4.2 (Kitkat) 响应 Bluestacks

于 2017-10-26T14:41:57.637 回答
5

无需任何安装,您就可以使用您的 adb 命令。

例如,对于您的主模拟器

adb -s emulator-5554 shell getprop ro.build.version.release
adb -s emulator-5554 shell getprop ro.build.version.sdk

对于您的多模拟器加起来 10,

adb -s emulator-5564 shell getprop ro.build.version.release
adb -s emulator-5564 shell getprop ro.build.version.sdk
adb -s emulator-5574 shell getprop ro.build.version.release
adb -s emulator-5574 shell getprop ro.build.version.sdk
//... so on

你也可以通过他们的本地 ip 执行 shell 命令,

adb -s 127.0.0.1:5555 shell getprop ro.build.version.release
adb -s 127.0.0.1:5555 shell getprop ro.build.version.sdk
adb -s 127.0.0.1:5565 shell getprop ro.build.version.release
adb -s 127.0.0.1:5565 shell getprop ro.build.version.sdk
adb -s 127.0.0.1:5575 shell getprop ro.build.version.release
adb -s 127.0.0.1:5575 shell getprop ro.build.version.sdk
//... so on
于 2017-08-03T02:59:01.170 回答
0

只需使用 Droid Info .. 即可轻松为您提供大量信息。 在此处输入图像描述

于 2019-12-05T19:42:36.720 回答