We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdf6fea commit e9c65fdCopy full SHA for e9c65fd
sentry-samples/kmp-app-spm/androidApp/build.gradle.kts
@@ -1,3 +1,4 @@
1
+import org.jetbrains.kotlin.gradle.dsl.JvmTarget
2
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
3
4
plugins {
@@ -11,8 +12,10 @@ java {
11
12
targetCompatibility = JavaVersion.VERSION_11
13
}
14
-tasks.withType<KotlinCompile> {
15
- kotlinOptions.jvmTarget = "1.8"
+kotlin {
16
+ compilerOptions {
17
+ jvmTarget = JvmTarget.JVM_11
18
+ }
19
20
21
android {
0 commit comments