Skip to content

Instantly share code, notes, and snippets.

@hector6872
Created September 11, 2017 09:43
Show Gist options
  • Save hector6872/7f8ba91500b86bad987a1f70e91c7b05 to your computer and use it in GitHub Desktop.
Save hector6872/7f8ba91500b86bad987a1f70e91c7b05 to your computer and use it in GitHub Desktop.
SupportVersion
public class SupportVersion {
private SupportVersion() {
}
public static boolean isLollipopOrAbove() {
return Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP;
}
public static boolean isMarshmallowOrAbove() {
return Build.VERSION.SDK_INT >= Build.VERSION_CODES.M;
}
public static boolean isOreoOrAbove() {
return Build.VERSION.SDK_INT >= Build.VERSION_CODES.O;
}
}
@hector6872
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment