Get Android OS version of device connected via ADB [duplicate]

Solution 1:

To get Android version you can use:

adb shell getprop ro.build.version.release 

to get API level:

adb shell getprop ro.build.version.sdk 

You can see all available properties with this command:

adb shell getprop

Solution 2:

I know , you already got the correct solution , & here is my solution only for additional information.

You will get every details by cat ing the /system/build.prop file like

adb shell cat /system/build.prop

Here is collection of adb commands

Solution 3:

For all properties:

adb shell getprop