shell 获取通过ADB连接的设备的Android OS版本[重复]

jgwigjjp  于 2023-10-23  发布在  Shell
关注(0)|答案(3)|浏览(102)

此问题已在此处有答案

Android ADB commands to get the device properties(4个答案)
8年前就关门了。
可以使用adbadb shell命令来获取附加的模拟器/设备操作系统信息吗?API版本?

soat7uwm

soat7uwm1#

要获得Android版本,您可以用途:

adb shell getprop ro.build.version.release

要获取API级别,请执行以下操作:

adb shell getprop ro.build.version.sdk

您可以使用此命令查看所有可用属性:

adb shell getprop
iyzzxitl

iyzzxitl2#

我知道,你已经得到了正确的解决方案,这里是我的解决方案,仅供参考。
您将通过cat ing /system/build.prop文件获得所有细节,如

adb shell cat /system/build.prop

Here is collection of adb commands

ebdffaop

ebdffaop3#

对于所有属性:

adb shell getprop

相关问题