Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
hoc081098 committed May 22, 2024
1 parent 3430a76 commit f2e1910
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,23 @@ import org.jetbrains.kotlin.gradle.dsl.JvmTarget
plugins {
alias(libs.plugins.jetbrains.compose)
alias(libs.plugins.android.app)
alias(libs.plugins.kotlin.android)
alias(libs.plugins.kotlin.multiplatform)
}

compose {
kotlinCompilerPlugin.set(libs.versions.jetbrains.compose.compiler)
}

kotlin {
androidTarget {
compilations.configureEach {
compilerOptions.configure {
jvmTarget.set(JvmTarget.fromTarget(libs.versions.java.target.get()))
}
}
}
}

repositories {
jcenter()
}
Expand Down Expand Up @@ -47,10 +57,6 @@ android {
}
}

kotlinOptions {
jvmTarget = JvmTarget.fromTarget(libs.versions.java.target.get()).target
}

buildFeatures {
buildConfig = true
}
Expand Down

0 comments on commit f2e1910

Please # to comment.