isAtLeastV

@ChecksSdkIntAtLeast(api = 35, codename = "VanillaIceCream")
fun isAtLeastV(): Boolean(source)

Deprecated

Android VanillaIceCream 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 >= 35`.

Replace with

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

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

Note: When Android VanillaIceCream is finalized for release, this method will be removed and all calls must be replaced with Build.VERSION.SDK_INT >= 35.

Return

true if VanillaIceCream APIs are available for use, false otherwise