How to find ARM processor version on android device?

Solution 1:

Try

adb shell cat /proc/cpuinfo

Solution 2:

Execute the following command:

adb shell getprop ro.product.cpu.abi

Solution 3:

There is also:

adb shell getprop ro.product.cpu.abilist

Solution 4:

Try,

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

It would give you the abi type based on which you can find which arch the device belongs to.

Reference : https://developer.android.com/ndk/guides/abis

Eg;

x86         - 32 bit x86 architecture
x86_64      - 64 bit x86 architecture
armeabi-v7a - 32 bit arm architecture
arm64-v8a   - 64 bit arm architecuture

Solution 5:

What worked for me is a mix of two methods. Firs I try

adb shell getprop ro.product.cpu.abilist

And if it is not clear (in case of Huawei Octacores) you can use

adb shell getprop ro.product.cpu.abi