From 1613a1981d40af7376371bfedc8870931c540b29 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Aug 2026 15:06:41 +0000 Subject: [PATCH 1/2] build(deps): bump androidx.compose:compose-bom Bumps androidx.compose:compose-bom from 2026.06.01 to 2026.08.00. --- updated-dependencies: - dependency-name: androidx.compose:compose-bom dependency-version: 2026.08.00 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index b15bedf5e..d8fdc4a02 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -36,7 +36,7 @@ androidx-webkit = "1.17.0" sqlcipher = "4.5.4" -compose-bom = "2026.06.01" +compose-bom = "2026.08.00" compose-activities = "1.13.0" compose-view-models = "2.11.0" compose-paging = "3.5.1" From 4aeeaa6f11d51444293e4aa3902d9d398c71c2b0 Mon Sep 17 00:00:00 2001 From: Brandon McAnsh Date: Thu, 20 Aug 2026 12:40:24 -0400 Subject: [PATCH 2/2] fix(bill-customization): drop ExperimentalAnimatableApi opt-in MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Compose 1.12.0 (compose-bom 2026.08.00) removes androidx.compose.animation.core.ExperimentalAnimatableApi, so the opt-in no longer compiles: e: ColorSlots.kt:8:40 Unresolved reference 'ExperimentalAnimatableApi'. The opt-in was vestigial — nothing here uses DeferredTargetAnimation or any approach-layout API, so it guarded nothing. Removing it rather than migrating to the replacement annotation. --- .../flipcash/app/bill/customization/components/ColorSlots.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/flipcash/features/bill-customization/src/main/kotlin/com/flipcash/app/bill/customization/components/ColorSlots.kt b/apps/flipcash/features/bill-customization/src/main/kotlin/com/flipcash/app/bill/customization/components/ColorSlots.kt index ccc4e7482..51805ee60 100644 --- a/apps/flipcash/features/bill-customization/src/main/kotlin/com/flipcash/app/bill/customization/components/ColorSlots.kt +++ b/apps/flipcash/features/bill-customization/src/main/kotlin/com/flipcash/app/bill/customization/components/ColorSlots.kt @@ -5,7 +5,6 @@ import androidx.compose.animation.EnterTransition import androidx.compose.animation.ExitTransition import androidx.compose.animation.ExperimentalSharedTransitionApi import androidx.compose.animation.animateColorAsState -import androidx.compose.animation.core.ExperimentalAnimatableApi import androidx.compose.animation.core.animateDpAsState import androidx.compose.animation.core.animateFloatAsState import androidx.compose.animation.core.spring @@ -46,7 +45,7 @@ import com.flipcash.features.bill.playground.R import com.getcode.theme.CodeTheme -@OptIn(ExperimentalSharedTransitionApi::class, ExperimentalAnimatableApi::class) +@OptIn(ExperimentalSharedTransitionApi::class) @Composable internal fun ColorSlots( selectedSlot: Int,