Android Device Version Check isICS()

Here you can find the source of isICS()

Description

is ICS

Declaration

public static boolean isICS() 

Method Source Code

//package com.java2s;

import android.os.Build;

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

Related

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