How to check android bluestacks emulator OS version

I searched a lot for this in google, but don’t hope how to check the Windows OS version of Bluestacks emulator? There is a video on youtube for checking the bluestack version, but not the Android version used in it. Can someone please help me on this? I went to Settings β†’ Advanced Settings, but the About tab was not found, which is in the Android emulator, as is the case with the Genymotion emulator. thanks mukund

+8
android bluestacks
source share
4 answers

Install the terminal emulator from the Play Store, open the application and enter:

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

or getprop ro.build.version.sdk to get the sdk version that will return 19

+14
source share

There is an easier way to find out the version of Android without having to install any application.

There are several scripts (php / js) that can determine your version of Android when visiting websites:

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

+9
source share

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

I tested this on several devices, the version of which is known to Android, and that's for sure. Currently responding to Bluestacks as v4.4.2 (Kitkat)

+3
source share

Without any installation, you can use adb commands.

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 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 can also execute shell commands by their local ip,

 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 
+1
source share

All Articles