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
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
Jisu hong
source share