Skip to content

Commit

Permalink
Fix build error in Android Studio Ladybug (#285)
Browse files Browse the repository at this point in the history
  • Loading branch information
fornewid authored Oct 26, 2024
1 parent 9aa6f6b commit 06e1124
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build-logic/convention/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import org.jetbrains.kotlin.gradle.dsl.JvmTarget

plugins {
`kotlin-dsl`
}
Expand All @@ -9,6 +11,12 @@ java {
targetCompatibility = JavaVersion.VERSION_17
}

kotlin {
compilerOptions {
jvmTarget = JvmTarget.JVM_17
}
}

dependencies {
implementation(libs.android.pluginGradle)
implementation(libs.kotlin.pluginGradle)
Expand Down

0 comments on commit 06e1124

Please sign in to comment.