Android Device Version Check isHoneycomb()

Here you can find the source of isHoneycomb()

Description

is Honeycomb

Declaration

public static boolean isHoneycomb() 

Method Source Code

//package com.java2s;

import android.os.Build;

public class Main {
    public static boolean isHoneycomb() {
        return Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB;
    }/*from   w ww.jav a  2  s  . c  o m*/
}

Related

  1. isJellybeanOrLater()
  2. checkIncVersion(String fingerprinter, String product)
  3. checkVersion(long newVersion, String product)
  4. getAndroidVersion()
  5. isGingerbread()
  6. isICS()
  7. isJellybean()
  8. isKitKat()
  9. isKitKatOnly()