How to find ARM processor version on android devic

2019-01-21 05:32发布

I tried the following command and it worked fine on a couple of devices.

adb shell getprop | grep abi

This command fails to get the ARM processor version for some devices. Is there any other way to find out what version of ARM processor is my device running on?

Thanks

标签: android adb
3条回答
贼婆χ
2楼-- · 2019-01-21 06:02

Try

adb shell cat /proc/cpuinfo
查看更多
男人必须洒脱
3楼-- · 2019-01-21 06:03

There is also:

adb shell getprop ro.product.cpu.abilist
查看更多
forever°为你锁心
4楼-- · 2019-01-21 06:05

Execute the following command:

adb shell getprop ro.product.cpu.abi
查看更多
登录 后发表回答