Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.os.Build;

public class Main {
    private static Integer SDK;

    public static boolean IsFroyoOrLater() {
        if (SDK == null)
            SDK = Integer.valueOf(Integer.parseInt(Build.VERSION.SDK));
        if (SDK.intValue() >= 8)
            return true;
        return false;
    }
}