Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find ARM processor version on android device?

Tags:

android

adb

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

like image 753
Akhil Latta Avatar asked Jul 08 '11 20:07

Akhil Latta


People also ask

How do I identify my ARM processor?

Open the Settings app. Navigate to System > About. On the right, check out the System type value. It shows either a x86-based processor (32-bit), x64-based processor (64-bit), or ARM-based processor depending on the hardware you have.

Is my Android arm or ARM64?

Easy enough. To figure out if it's ARM or x86, you'll look at the Instruction Set section—again, you're just looking for the basic info here, like the letters “arm.” On my Pixel 2 XL (the above screenshots), for example, it's pretty clear that it's an ARM64 device.

How do I know if I have an ARM64 processor?

The easiest way to find your CPU type is to install an app that gives you a readout about your device's hardware. Our favorite such app is called Droid Hardware Info, and it's available for free on the Google Play Store.

Does Android use ARM processor?

Android supports, ARM, MIPS, Power Architecture, x86 prosessors.. X86 cpu's are like Intel Atom and other cpu's that are single core like the Pentium M. Android needs atleast a 480MHZ Cpu to run smooth anything below will be slow.


1 Answers

Try

adb shell cat /proc/cpuinfo 
like image 144
Matthieu Avatar answered Sep 21 '22 21:09

Matthieu