Java tutorial
//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; } }