mirror of
https://github.com/Suwayomi/TachideskJUI.git
synced 2025-12-10 06:42:05 +01:00
124 lines
3.3 KiB
Kotlin
124 lines
3.3 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("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"
|
|
}
|