Back to project page webimageloader.
The source code is released under:
Apache License
If you think the Android project webimageloader listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.webimageloader.util; // w w w .j a v a 2 s . c o m import android.os.Build; public class Android extends Build.VERSION_CODES { /** * Check the api level of the device we're running on * @param level API level * @return true if same or higher */ public static boolean isAPI(int level) { return Build.VERSION.SDK_INT >= level; } private Android() {} }