isAtLeastSv2

@ChecksSdkIntAtLeast(api = 32, codename = "Sv2")
fun isAtLeastSv2(): Boolean(source)

Deprecated

Android Sv2 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 >= 32`.

Replace with

android.os.Build.VERSION.SDK_INT >= 32

Checks if the device is running on a pre-release version of Android Sv2 or a release version of Android Sv2 or newer.

Return

true if Sv2 APIs are available for use, false otherwise