Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//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");
    }
}