Android Device Version Check isJellybean()

Here you can find the source of isJellybean()

Description

is Jellybean

Declaration

public static boolean isJellybean() 

Method Source Code

//package com.java2s;

import android.os.Build;

public class Main {
    public static boolean isJellybean() {
        return Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN;
    }/* w w  w . j  a v a  2s.  co m*/
}

Related

  1. checkVersion(long newVersion, String product)
  2. getAndroidVersion()
  3. isGingerbread()
  4. isHoneycomb()
  5. isICS()
  6. isKitKat()
  7. isKitKatOnly()
  8. isLollipop()
  9. hasJellyBean()