Skip to content

Commit

Permalink
update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
stslex committed Mar 2, 2024
1 parent 7d76fdf commit c7429ad
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 12 deletions.
3 changes: 0 additions & 3 deletions composeApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,6 @@ android {
dependencies {
debugImplementation(libs.compose.ui.tooling)
}
dexOptions {
javaMaxHeapSize = "4g"
}
}

compose.desktop {
Expand Down
2 changes: 2 additions & 0 deletions core/core/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import org.jetbrains.compose.ExperimentalComposeLibrary

plugins {
alias(libs.plugins.kotlinMultiplatform)
alias(libs.plugins.androidLibrary)
Expand Down
3 changes: 3 additions & 0 deletions core/ui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ kotlin {
api(compose.components.resources)
api(libs.bundles.voyager)
api(libs.kamel)

// implementation(compose.uiTooling)
// implementation(compose.preview)
}
commonTest.dependencies {
implementation(libs.kotlin.test)
Expand Down
20 changes: 11 additions & 9 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ android-compileSdk = "34"
android-targetSdk = "34"

logback = "1.4.11"
compose = "1.6.2"
compose-plugin = "1.5.11"
androidCompose = "1.6.2"
compose-plugin = "1.6.0"
compose-compiler = "1.5.4"
agp = "8.2.2"
androidx-activityCompose = "1.8.2"
Expand All @@ -31,16 +31,18 @@ coil = "2.5.0"

buildConfig = "4.2.0"
lifecycleRuntimeKtx = "2.7.0"
composeBom = "2024.02.01"
androixComposeBom = "2024.02.01"
[libraries]
kotlin-test = { module = "org.jetbrains.kotlin:kotlin-test", version.ref = "kotlin" }
kotlin-test-junit = { module = "org.jetbrains.kotlin:kotlin-test-junit", version.ref = "kotlin" }
junit = { group = "junit", name = "junit", version.ref = "junit" }
compose-ui = { module = "androidx.compose.ui:ui", version.ref = "compose" }
compose-ui-tooling = { module = "androidx.compose.ui:ui-tooling", version.ref = "compose" }
compose-ui-tooling-preview = { module = "androidx.compose.ui:ui-tooling-preview", version.ref = "compose" }
compose-foundation = { module = "androidx.compose.foundation:foundation", version.ref = "compose" }
compose-material = { module = "androidx.compose.material:material", version.ref = "compose" }

compose-ui = { module = "androidx.compose.ui:ui", version.ref = "androidCompose" }
compose-ui-tooling = { module = "androidx.compose.ui:ui-tooling", version.ref = "androidCompose" }
compose-ui-tooling-preview = { module = "androidx.compose.ui:ui-tooling-preview", version.ref = "androidCompose" }
compose-foundation = { module = "androidx.compose.foundation:foundation", version.ref = "androidCompose" }
compose-material = { module = "androidx.compose.material:material", version.ref = "androidCompose" }

androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "androidx-core-ktx" }
androidx-test-junit = { group = "androidx.test.ext", name = "junit", version.ref = "androidx-test-junit" }
androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "androidx-espresso-core" }
Expand Down Expand Up @@ -83,7 +85,7 @@ coroutines-android = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-androi

coil-compose = { module = "io.coil-kt:coil-compose", version.ref = "coil" }
androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycleRuntimeKtx" }
androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "composeBom" }
androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "androixComposeBom" }
androidx-ui-graphics = { group = "androidx.compose.ui", name = "ui-graphics" }
androidx-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest" }
androidx-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" }
Expand Down

0 comments on commit c7429ad

Please sign in to comment.