is At Least OS KitKat - Android android.system

Android examples for android.system:Os Version

Description

is At Least OS KitKat

Demo Code

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*/

}

Related Tutorials