Android examples for android.system:Os Version
is At Least OS KitKat
import android.os.Build; public class Main { public static boolean isAtLeastOSKitKat() { return Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT; }/*w w w.java2 s. c o m*/ }