Java tutorial
//package com.java2s; //License from project: Open Source License import android.os.Build; public class Main { /** * Whether or not this CPU is using the ARM architecture. * * @return true if this CPU uses the ARM architecture; false otherwise. */ public static boolean isARM() { return Build.CPU_ABI.contains("arm"); } }