System.getProperty - Java, .
Linux , uname -m. : t22, armeabi , .
System.getProperty, Build.CPU_ABI ( Build.SUPPORTED_ABIS ):
String abi = null;
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {
abi = Build.CPU_ABI;
} else {
abi = Build.SUPPORTED_ABIS[0];
}
: armeabi, armeabi-v7a, arm64-v8a, x86, x86_64, mips, mips64.
, , System.getProperty, armeabi.