如何检查android OS版本的bluestacks模拟器

时间:2021-08-21 20:32:28

I searched a lot for this in google, but no hope, how to check the OS version of Bluestacks emulator in windows? there is a video in youtube for checking bluestack version, but not the android version used in it. Can somebody please help me in this matter? I went to settings --> Advanced settings, but there was no tab corresponding to About tab which is found in a android emulator like in the case of Genymotion emulator. Thanks Mukund

我在谷歌中搜索了很多,但是没有希望,如何在windows中检查OS版本的Bluestacks模拟器?youtube上有一个用来检查bluestack版本的视频,而不是它的android版本。有人能帮我解决这个问题吗?我去了设置——>高级设置,但是没有对应于About tab的选项卡,在android模拟器中可以找到类似Genymotion模拟器的选项卡。由于Mukund

5 个解决方案

#1


16  

Install Terminal Emulator from Play Store, open the application and type:

从Play Store安装终端模拟器,打开应用程序和类型:

getprop ro.build.version.release you will get something like: 4.4.4 for KitKat.

getprop ro.build.version。发布你将会得到类似:4.4.4的KitKat版本。

or getprop ro.build.version.sdk for getting the sdk version which will return 19

或getprop ro.build.version。获取sdk版本,返回19

#2


12  

There is an easier way of getting to know the android version without having to install any application.

不需要安装任何应用程序,就可以更容易地了解android版本。

There are some scripts (php/js) that can detect your android version while visiting websites:

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

Try; http://demo.mobiledetect.net/ Or; http://detectmobilebrowsers.com/

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

#3


4  

Open a browser in Bluestacks and go to http://demo.mobiledetect.net

打开蓝色的浏览器,访问http://demo.mobiledetect.net。

I have tested this on multiple devices of which the Android version is known, and it is accurate. Currently responds to Bluestacks as v4.4.2 (Kitkat)

我在Android版本的多台设备上测试过这个,它是准确的。目前响应Bluestacks 4.4.2 (Kitkat)

#4


1  

Without any installation, you could use your adb commands.

没有任何安装,您可以使用adb命令。

For example, for your main emulator

例如,对于您的主模拟器

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

For your multi emulators add up by 10,

多模拟器加起来是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

You could also do the shell commands by their local ip,

你也可以通过它们的本地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

#5


-1  

You could simply install an app known as "My Device"(on bluestacks)

你只需在bluestacks上安装一个名为“我的设备”(My Device)的app即可。

This app will tell you the android version running on bluestacks

这个应用程序会告诉你android版本运行在bluestacks上

#1


16  

Install Terminal Emulator from Play Store, open the application and type:

从Play Store安装终端模拟器,打开应用程序和类型:

getprop ro.build.version.release you will get something like: 4.4.4 for KitKat.

getprop ro.build.version。发布你将会得到类似:4.4.4的KitKat版本。

or getprop ro.build.version.sdk for getting the sdk version which will return 19

或getprop ro.build.version。获取sdk版本,返回19

#2


12  

There is an easier way of getting to know the android version without having to install any application.

不需要安装任何应用程序,就可以更容易地了解android版本。

There are some scripts (php/js) that can detect your android version while visiting websites:

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

Try; http://demo.mobiledetect.net/ Or; http://detectmobilebrowsers.com/

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

#3


4  

Open a browser in Bluestacks and go to http://demo.mobiledetect.net

打开蓝色的浏览器,访问http://demo.mobiledetect.net。

I have tested this on multiple devices of which the Android version is known, and it is accurate. Currently responds to Bluestacks as v4.4.2 (Kitkat)

我在Android版本的多台设备上测试过这个,它是准确的。目前响应Bluestacks 4.4.2 (Kitkat)

#4


1  

Without any installation, you could use your adb commands.

没有任何安装,您可以使用adb命令。

For example, for your main emulator

例如,对于您的主模拟器

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

For your multi emulators add up by 10,

多模拟器加起来是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

You could also do the shell commands by their local ip,

你也可以通过它们的本地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

#5


-1  

You could simply install an app known as "My Device"(on bluestacks)

你只需在bluestacks上安装一个名为“我的设备”(My Device)的app即可。

This app will tell you the android version running on bluestacks

这个应用程序会告诉你android版本运行在bluestacks上