Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update dependencies #3427

Merged
merged 1 commit into from
Sep 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,6 @@ dependencies {
androidTestImplementation(composeBom)

implementation(libs.compose.ui)
implementation(libs.compose.foundation)
implementation(libs.compose.material.android)
// we still cannot get rid of material2 because swipeable is still missing - https://issuetracker.google.com/issues/229839039
// https://developer.android.com/jetpack/compose/designsystems/material2-material3#components-and
implementation(libs.compose.material.core)
Expand Down
2 changes: 0 additions & 2 deletions core/ui-common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ dependencies {
val composeBom = platform(libs.compose.bom)
implementation(composeBom)
implementation(libs.compose.ui)
implementation(libs.compose.foundation)
implementation(libs.compose.material.android)
implementation(libs.compose.ui.graphics)
implementation(libs.compose.material.core)
implementation(libs.compose.material3)
Expand Down
2 changes: 0 additions & 2 deletions features/sketch/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ dependencies {
val composeBom = platform(libs.compose.bom)
implementation(composeBom)
implementation(libs.compose.ui)
implementation(libs.compose.foundation)
implementation(libs.compose.material.android)
implementation(libs.compose.ui.graphics)
implementation(libs.compose.material.core)
implementation(libs.compose.material3)
Expand Down
28 changes: 12 additions & 16 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ detekt = "1.23.6"
google-gms = "4.4.2"
gms-location = "21.3.0"
android-gradlePlugin = "8.3.2"
desugaring = "2.0.4"
firebaseBOM = "33.1.0"
desugaring = "2.1.2"
firebaseBOM = "33.2.0"
fragment = "1.5.6"
resaca = "3.0.0"
bundlizer = "0.8.0"
Expand All @@ -32,24 +32,22 @@ androidx-appcompat = "1.7.0"
androidx-core = "1.13.1"
androidx-dataStore = "1.1.1"
androidx-exif = "1.3.7"
androidx-emoji = "1.4.0"
androidx-emoji = "1.5.0"
androidx-jetpack = "1.1.0"
androidx-lifecycle = "2.8.1"
androidx-paging3 = "3.3.0"
androidx-paging3Compose = "3.3.0"
androidx-lifecycle = "2.8.5"
androidx-paging3 = "3.3.2"
androidx-paging3Compose = "3.3.2"
androidx-splashscreen = "1.0.1"
androidx-workManager = "2.9.0"
androidx-workManager = "2.9.1"
androidx-browser = "1.8.0"
androidx-biometric = "1.1.0"
androidx-startup = "1.1.1"
androidx-compose-runtime = "1.6.7"
androidx-compose-runtime = "1.7.0"
compose-qr = "1.0.1"

# Compose
composeBom = "2024.06.00"
compose-foundation = "1.7.0-rc01" # remove when composeBom contains new stable version of BasicTextField2
compose-material-android = "1.7.0-rc01" # remove when composeBom contains new stable version of BasicTextField2
compose-activity = "1.9.0"
composeBom = "2024.09.00"
compose-activity = "1.9.2"
compose-compiler = "1.5.11"
compose-constraint = "1.0.1"
compose-navigation = "2.7.7" # adjusted to work with compose-destinations "1.9.54"
Expand All @@ -63,7 +61,7 @@ hilt-work = "1.2.0"
# Android UI
accompanist = "0.32.0" # adjusted to work with compose-destinations "1.9.54"
material = "1.12.0"
material3 = "1.3.0-rc01"
material3 = "1.3.0"
coil = "2.6.0"
commonmark = "0.22.0"

Expand All @@ -88,7 +86,7 @@ leakCanary = "2.14"
ksp = "1.9.23-1.0.20"

# Benchmark
benchmark-macro-junit4 = "1.2.0-beta03"
benchmark-macro-junit4 = "1.3.0"
profileinstaller = "1.3.1"

# Testing
Expand Down Expand Up @@ -195,8 +193,6 @@ hilt-work = { module = "androidx.hilt:hilt-work", version.ref = "hilt-work" }

# Compose BOM
compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "composeBom" }
compose-foundation = { module = "androidx.compose.foundation:foundation", version.ref = "compose-foundation" }
compose-material-android = { module = "androidx.compose.material:material-android", version.ref = "compose-material-android" }
compose-material-core = { module = "androidx.compose.material:material" }
compose-material-icons = { module = "androidx.compose.material:material-icons-extended" }
compose-material-ripple = { module = "androidx.compose.material:material-ripple" }
Expand Down
Loading