我尝试了以下命令,它在一些设备上运行良好。
adb shell getprop | grep abi
此命令无法获取某些设备的 ARM 处理器版本。有没有其他方法可以找出我的设备运行的 ARM 处理器版本?
谢谢
执行以下命令:
adb shell getprop ro.product.cpu.abi
尝试
adb shell cat /proc/cpuinfo
还有:
adb shell getprop ro.product.cpu.abilist
尝试一下,
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
对我有用的是两种方法的结合。首先我尝试
adb shell getprop ro.product.cpu.abilist
如果不清楚(如果是华为八核),您可以使用
adb shell getprop ro.product.cpu.abi