如何在Android设备上查找ARM处理器版本?


73

我尝试了以下命令,它在几个设备上都能正常工作。

adb shell getprop | grep abi

此命令无法获取某些设备的ARM处理器版本。还有其他方法可以找出我的设备运行在哪个版本的ARM处理器上?

谢谢

Answers:


112

尝试

adb shell cat /proc/cpuinfo

1
它也可以进入cat /proc/cpuinfo到手机上的控制台是否可行(根需要,终端仿真器,甚至可能GravityBox,...)
法比安罗林



3

对我有用的是两种方法的混合。我尝试的冷杉

adb shell getprop ro.product.cpu.abilist

如果不清楚(对于华为Octacores),则可以使用

adb shell getprop ro.product.cpu.abi

2

尝试,

adb shell getprop | grep ro.product.cpu.abi

它会为您提供abi类型,您可以根据该类型找到设备所属的拱门。

参考:https : //developer.android.com/ndk/guides/abis

例如;

x86         - 32 bit x86 architecture
x86_64      - 64 bit x86 architecture
armeabi-v7a - 32 bit arm architecture
arm64-v8a   - 64 bit arm architecuture
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.