Skip to content

Commit

Permalink
Update build.gradle.kts
Browse files Browse the repository at this point in the history
  • Loading branch information
krossovochkin authored Nov 27, 2024
1 parent edfc037 commit bcc1025
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ kotlin {
}

sourceSets {
val commonMain by getting
val commonMain by getting {
dependencies {
implementation(libs.androidx.compose.runtime)
}
}
val commonTest by getting {
dependencies {
implementation(kotlin("test-common"))
Expand Down Expand Up @@ -62,11 +66,7 @@ kotlin {
iosArm64Test.dependsOn(this)
//iosSimulatorArm64Test.dependsOn(this)
}
val jvmMain by getting {
dependencies {
implementation(libs.androidx.compose.runtime)
}
}
val jvmMain by getting
val jvmTest by getting {
dependencies {
implementation(kotlin("test-junit"))
Expand All @@ -84,11 +84,11 @@ kotlin {
}

android {
compileSdk = 34
compileSdk = 35
sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
defaultConfig {
minSdk = 24
targetSdk = 34
targetSdk = 35
}
kotlin {
jvmToolchain(17)
Expand Down

0 comments on commit bcc1025

Please sign in to comment.