From a5394c702202bd963577ea79ea2c25130cb55d55 Mon Sep 17 00:00:00 2001 From: Ahmad Ansori Palembani Date: Wed, 26 Jun 2024 06:27:03 +0700 Subject: [PATCH] fix(deps): Attempt 2 trying to fix https://issuetracker.google.com/343750859 --- gradle/compose.versions.toml | 7 +++---- settings.gradle.kts | 4 ++-- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/gradle/compose.versions.toml b/gradle/compose.versions.toml index e82833943c..aa30cf6670 100644 --- a/gradle/compose.versions.toml +++ b/gradle/compose.versions.toml @@ -4,13 +4,12 @@ compose-bom = "2024.06.00" [libraries] bom = { module = "androidx.compose:compose-bom", version.ref = "compose-bom" } animation = { module = "androidx.compose.animation:animation" } -foundation = { module = "androidx.compose.foundation:foundation", version = "1.8.0-SNAPSHOT" } -material3 = { module = "androidx.compose.material3:material3", version = "1.3.0-beta03" } +foundation = { module = "androidx.compose.foundation:foundation", version = "1.7.0-SNAPSHOT" } +material3 = { module = "androidx.compose.material3:material3", version = "1.3.0-SNAPSHOT" } material-motion = { module = "io.github.fornewid:material-motion-compose-core", version = "1.0.7" } -ui = { module = "androidx.compose.ui:ui" } ui-tooling = { module = "androidx.compose.ui:ui-tooling" } ui-tooling-preview = { module = "androidx.compose.ui:ui-tooling-preview" } icons = { module = "androidx.compose.material:material-icons-extended" } [bundles] -compose = [ "animation", "foundation", "material3", "material-motion", "ui", "ui-tooling-preview", "icons" ] +compose = [ "animation", "foundation", "material3", "material-motion", "ui-tooling-preview", "icons" ] diff --git a/settings.gradle.kts b/settings.gradle.kts index 4de07d293b..90292ca06f 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -24,8 +24,8 @@ dependencyResolutionManagement { google() maven("https://jitpack.io") maven("https://plugins.gradle.org/m2/") - // FIXME: Remove on Compose 1.8.0-alpha01 - maven("https://androidx.dev/snapshots/builds/11925800/artifacts/repository") + // FIXME: https://issuetracker.google.com/343750859 + maven("https://androidx.dev/snapshots/builds/11851351/artifacts/repository") } }