Skip to content
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' into compose-mp-1.6.0
Browse files Browse the repository at this point in the history
# Conflicts:
#	lib/build.gradle.kts
  • Loading branch information
chrisbanes committed Dec 11, 2023
2 parents f75ec3d + b759a19 commit 58ac5a6
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// SPDX-License-Identifier: Apache-2.0


import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget
import org.jetbrains.kotlin.gradle.targets.js.dsl.ExperimentalWasmDsl

Expand All @@ -15,8 +16,13 @@ plugins {
kotlin {
applyDefaultHierarchyTemplate()

jvm()

jvm {
compilations.all {
compilerOptions.configure {
jvmTarget.set(JvmTarget.JVM_1_8)
}
}
}
androidTarget {
publishLibraryVariants("release")

Expand Down

0 comments on commit 58ac5a6

Please sign in to comment.