Skip to content

Instantly share code, notes, and snippets.

@jairobjunior
Last active August 21, 2019 19:25
Show Gist options
  • Save jairobjunior/e558b32cecd7c1aecd7b5e559d7f0482 to your computer and use it in GitHub Desktop.
Save jairobjunior/e558b32cecd7c1aecd7b5e559d7f0482 to your computer and use it in GitHub Desktop.
How to get Android Version and API level
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