Back to project page RZAndroidBaseUtils.
The source code is released under:
MIT License
If you think the Android project RZAndroidBaseUtils 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.raizlabs.baseutils; /* ww w. j a v a2 s .c o m*/ import android.os.Build.VERSION; import android.os.Build.VERSION_CODES; public class CompatibilityUtils { /** * @return True if the current device supports the Honeycomb+ Animation APIs */ public static boolean supportsHoneycombAnimation() { return VERSION.SDK_INT >= VERSION_CODES.HONEYCOMB; } }