We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1bb301 commit a7f30d0Copy full SHA for a7f30d0
1 file changed
build.gradle
@@ -13,15 +13,9 @@ java {
13
targetCompatibility = rootProject.javaVersion
14
toolchain.languageVersion = JavaLanguageVersion.of(rootProject.javaToolchainVersion.toString())
15
}
16
-compileKotlin {
17
- kotlinOptions {
18
- jvmTarget = rootProject.javaVersion
19
- // allWarningsAsErrors = true // replaced by "DeprecatedCall" in lint
20
- }
21
-}
22
-compileTestKotlin {
23
24
+kotlin {
+ compilerOptions {
+ jvmTarget = rootProject.kotlinJvmTarget
25
// allWarningsAsErrors = true // replaced by "DeprecatedCall" in lint
26
27
@@ -44,4 +38,4 @@ test {
44
38
events("failed")
45
39
46
40
47
41
+}
0 commit comments