Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    /**
     * Method used to check if the code is currently running on Android Platform
     * via System properties {@see http://developer.android.com/reference/java/lang/System.html#getProperty()}
     *
     * @return true if running on Android, false otherwise
     */
    public static boolean isRunningOnAndroid() {
        return System.getProperty("java.vendor").contains("Android");
    }
}