Android cpu ABI

Eungi KimΒ·2021λ…„ 1μ›” 29일
0
ARCTYPEUSEFULDESC
ARMarmeabiIgnoreVery old architecture - Unsupported after Android 4.4
armeabi-v7aRequiredMost common architecture
(Typically also supports armeabi)
arm64-v8aOptional64 bit ARM architecture, it can use v7 version unless you are too much concerned about performance.
(Typically also supports armeabi and armeabi-v7a)
X86x86RequiredAll Intel based devices
x86_64IgnoreNo android devices and anyway it can use X86 version
(Typically also supports x86)
MIPSmipsIgnoreThere are no devices with MIPS
mpis64Ignore(Typically also supports mips)

To figure out what type of ABI your Android device

Pre-Lollipop devices:

ADB command:

  • adb shell getprop ro.product.cpu.abi

Programmatically:

  • android.os.Build.CPU_ABI and android.os.Build.CPU_ABI2

Lollipop and higher:

ADB command:

  • adb shell getprop ro.product.cpu.abilist

Programatically:

  • android.os.Build.SUPPORTED_ABIS

AndroidPub
https://handstandsam.com/

profile
Run and gun and debugun

0개의 λŒ“κΈ€