Skip to content

Commit 8561219

Browse files
zulip plugin: Switch to compilerOptions from kotlinOptions
This is related to #1804, and does the same migration for zulip_plugin.
1 parent c33ed75 commit 8561219

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages/zulip_plugin/android/build.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@ android {
1616
sourceCompatibility = JavaVersion.VERSION_1_8
1717
targetCompatibility = JavaVersion.VERSION_1_8
1818
}
19+
}
1920

20-
kotlinOptions {
21-
jvmTarget = "1.8"
21+
kotlin {
22+
compilerOptions {
23+
jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_1_8
2224
}
2325
}

0 commit comments

Comments
 (0)