GETTING YOUR ANDROID CPU ARCHITECTURE VIA ADB

Here's a quick tutorial to get the correct cpu for your android device which in turn will help you when you will be selecting the correct xposed framework to download and flash to your device.

To get the correct architecture/processor for your device simply use adb to check, connect your device to PC (Your device must be rooted to perform this adb shell command)

Simply open a command window from your adb platform tools folder via shift+right click of your mouse and type the following codes below:
  • adb shell (hit enter key)
  • su (hit enter key)
  • cat /proc/cpuinfo (hit enter key)
This is how it looks like and our device is AArch64 which falls under arm64 
cat /proc/cpuinfo
cpuinfo_via_adb
That's it you may now select from xposed framework the correct file for your device.

reference:
arm= armv7 or armeabi
arm64= aarch64 or arm64
x86= x86 or x86abi

Enjoy!

No comments:

Post a Comment

#