Here you can find the source of isJellybean()
public static boolean isJellybean()
//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*/ }