From acf47cbcb49ba3a4c8bdb6f6ef7d627299c67252 Mon Sep 17 00:00:00 2001 From: another-simple-pixel Date: Sat, 16 May 2026 09:44:16 -0700 Subject: [PATCH] =?UTF-8?q?Section:=20also=20suppress=20DEPRECATION=5FERRO?= =?UTF-8?q?R=20=E2=80=94=20RippleTheme=20is=20@Deprecated(level=3DERROR)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Previous attempt (4bf981a6b) suppressed DEPRECATION but the Compose library deprecated RippleTheme with level=DeprecationLevel.ERROR, which requires the DEPRECATION_ERROR suppression key instead. Add both so either severity is covered. Co-Authored-By: Claude Opus 4.7 (1M context) --- .../kotlin/chat/simplex/common/views/helpers/Section.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/helpers/Section.kt b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/helpers/Section.kt index 920dec9c5d..ec53610a9f 100644 --- a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/helpers/Section.kt +++ b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/helpers/Section.kt @@ -1,4 +1,4 @@ -@file:Suppress("DEPRECATION") // RippleTheme/LocalRippleTheme — used for SectionRippleTheme hover-alpha override; modern Indication-based ripple migration is a separate concern. +@file:Suppress("DEPRECATION", "DEPRECATION_ERROR") // RippleTheme/LocalRippleTheme — used for SectionRippleTheme hover-alpha override; modern Indication-based ripple migration is a separate concern. import androidx.compose.foundation.* import androidx.compose.foundation.layout.*