Files
TachideskJUI/ui-core/build.gradle.kts
renovate[bot] 52e874ddb7 Update materialDialogs to v0.9.7 (#154)
* Update materialDialogs to v0.9.7

* Update DateTime

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Syer10 <syer10@users.noreply.github.com>
2025-10-05 16:48:35 -04:00

125 lines
3.4 KiB
Kotlin

import org.jetbrains.compose.compose
plugins {
id(libs.plugins.kotlin.multiplatform.get().pluginId)
id(libs.plugins.kotlin.compose.get().pluginId)
id(libs.plugins.android.library.get().pluginId)
id(libs.plugins.compose.get().pluginId)
id(libs.plugins.buildkonfig.get().pluginId)
id(libs.plugins.kotlinter.get().pluginId)
}
kotlin {
androidTarget {
compilations {
all {
compileTaskProvider.configure {
compilerOptions {
jvmTarget = Config.androidJvmTarget
}
}
}
}
}
jvm("desktop") {
compilations {
all {
compileTaskProvider.configure {
compilerOptions {
jvmTarget = Config.desktopJvmTarget
}
}
}
}
}
iosX64()
iosArm64()
iosSimulatorArm64()
@OptIn(org.jetbrains.kotlin.gradle.ExperimentalKotlinGradlePluginApi::class)
applyHierarchyTemplate {
common {
group("jvm") {
withAndroidTarget()
withJvm()
}
group("ios") {
withIosX64()
withIosArm64()
withIosSimulatorArm64()
}
}
}
sourceSets {
all {
languageSettings {
optIn("kotlin.RequiresOptIn")
optIn("kotlin.time.ExperimentalTime")
optIn("androidx.compose.foundation.ExperimentalFoundationApi")
optIn("androidx.compose.material.ExperimentalMaterialApi")
optIn("androidx.compose.ui.ExperimentalComposeUiApi")
}
}
val commonMain by getting {
dependencies {
api(libs.coroutines.core)
api(libs.imageloader.core)
api(libs.imageloader.moko)
api(libs.voyager.core)
api(libs.voyager.screenmodel)
api(libs.dateTime)
api(libs.immutableCollections)
api(projects.core)
api(projects.i18n)
api(compose.runtime)
api(compose.foundation)
api(compose.ui)
api(compose.material)
api(compose.materialIconsExtended)
api(compose("org.jetbrains.compose.ui:ui-util"))
}
}
val commonTest by getting {
dependencies {
implementation(kotlin("test-common"))
implementation(kotlin("test-annotations-common"))
}
}
val jvmMain by getting {
dependencies {
api(compose.desktop.currentOs)
}
}
val jvmTest by getting {
dependencies {
implementation(kotlin("test"))
}
}
val desktopMain by getting {
}
val desktopTest by getting {
}
val androidMain by getting {
dependencies {
api(libs.bundles.compose.android)
api(libs.androidx.core)
api(libs.androidx.appCompat)
}
}
val androidUnitTest by getting {
}
}
}
buildkonfig {
packageName = "ca.gosyer.jui.uicore.build"
}
android {
namespace = "ca.gosyer.jui.uicore"
}