Last active
August 21, 2019 19:25
-
-
Save jairobjunior/e558b32cecd7c1aecd7b5e559d7f0482 to your computer and use it in GitHub Desktop.
How to get Android Version and API level
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Android version: | |
`adb shell getprop ro.build.version.release` | |
>> 6.0.1 | |
Android API Level: | |
`adb shell getprop ro.build.version.sdk` | |
>> 23 | |
Print all Android properties: | |
`adb shell getprop` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment