isAtLeastR
Deprecated
Android R is a finalized release and this method is no longer necessary. It will be removed in a future release of this library. Instead, use `Build.VERSION.SDK_INT >= 30`.
Replace with
android.os.Build.VERSION.SDK_INT >= 30
Content copied to clipboard
Checks if the device is running on release version of Android R or newer.
Return
true
if R APIs are available for use, false
otherwise