From 9c2d5ad5f9c19339be0bf774dbe2e62471b8256e Mon Sep 17 00:00:00 2001 From: Luna712 <142361265+Luna712@users.noreply.github.com> Date: Sat, 4 Nov 2023 23:29:43 -0600 Subject: [PATCH] Use Build.VERSION_CODES for consistency with the rest of the app --- .../com/lagradost/cloudstream3/ui/account/AccountAdapter.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/com/lagradost/cloudstream3/ui/account/AccountAdapter.kt b/app/src/main/java/com/lagradost/cloudstream3/ui/account/AccountAdapter.kt index 76aa021a..0d43c39a 100644 --- a/app/src/main/java/com/lagradost/cloudstream3/ui/account/AccountAdapter.kt +++ b/app/src/main/java/com/lagradost/cloudstream3/ui/account/AccountAdapter.kt @@ -89,7 +89,7 @@ class AccountAdapter( lockIcon.isVisible = account.lockPin != null outline.isVisible = !isTv && isLastUsedAccount - if (Build.VERSION.SDK_INT >= 33) { + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) { accountImage.setRenderEffect( RenderEffect.createBlurEffect( 10f, 10f, Shader.TileMode.CLAMP