Skip to content

Commit 599db7a

Browse files
committed
fix: specify jvm target config
1 parent db202fd commit 599db7a

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

bindings/kotlin/ldk-node-android/lib/build.gradle.kts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,15 @@ android {
3333
}
3434
}
3535

36+
compileOptions {
37+
sourceCompatibility = JavaVersion.VERSION_1_8
38+
targetCompatibility = JavaVersion.VERSION_1_8
39+
}
40+
41+
kotlinOptions {
42+
jvmTarget = "1.8"
43+
}
44+
3645
publishing {
3746
singleVariant("release") {
3847
withSourcesJar()

0 commit comments

Comments
 (0)