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 MIPS architecture. * * @return true if this CPU uses the MIPS architecture; false otherwise. */ public static boolean isMIPS() { return Build.CPU_ABI.contains("mips"); } }