Skip to content

Commit

Permalink
PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
findjigar committed Nov 19, 2024
1 parent 1bdcf8c commit 1e6dd3f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
9 changes: 4 additions & 5 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,10 @@ android {
compose = true
buildConfig = true
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(11)
}
}
}

kotlin {
jvmToolchain(11)
}

dependencies {
Expand Down
6 changes: 1 addition & 5 deletions shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,12 @@ android {
warningsAsErrors = true
abortOnError = true
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(11)
}
}
}

version = "1.2"

kotlin {
jvmToolchain(11)
// https://kotlinlang.org/docs/multiplatform-expect-actual.html#expected-and-actual-classes
// To suppress this warning about usage of expected and actual classes
@OptIn(ExperimentalKotlinGradlePluginApi::class)
Expand Down

0 comments on commit 1e6dd3f

Please sign in to comment.