mirror of
https://github.com/LiveFastEatTrashRaccoon/RaccoonForLemmy.git
synced 2025-02-03 21:57:33 +01:00
68 lines
2.1 KiB
Plaintext
68 lines
2.1 KiB
Plaintext
|
plugins {
|
||
|
alias(libs.plugins.kotlin.multiplatform)
|
||
|
alias(libs.plugins.android.library)
|
||
|
alias(libs.plugins.compose)
|
||
|
}
|
||
|
|
||
|
@OptIn(org.jetbrains.kotlin.gradle.ExperimentalKotlinGradlePluginApi::class)
|
||
|
kotlin {
|
||
|
applyDefaultHierarchyTemplate()
|
||
|
|
||
|
androidTarget {
|
||
|
compilations.all {
|
||
|
kotlinOptions {
|
||
|
jvmTarget = "1.8"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
iosX64()
|
||
|
iosArm64()
|
||
|
iosSimulatorArm64()
|
||
|
|
||
|
sourceSets {
|
||
|
val commonMain by getting {
|
||
|
dependencies {
|
||
|
implementation(compose.runtime)
|
||
|
implementation(compose.foundation)
|
||
|
implementation(compose.material)
|
||
|
implementation(compose.material3)
|
||
|
@OptIn(org.jetbrains.compose.ExperimentalComposeLibrary::class)
|
||
|
implementation(compose.components.resources)
|
||
|
implementation(compose.materialIconsExtended)
|
||
|
|
||
|
implementation(libs.koin.core)
|
||
|
implementation(libs.voyager.screenmodel)
|
||
|
implementation(libs.voyager.navigator)
|
||
|
|
||
|
implementation(projects.coreUtils)
|
||
|
implementation(projects.coreAppearance)
|
||
|
implementation(projects.coreArchitecture)
|
||
|
implementation(projects.coreCommonui.components)
|
||
|
implementation(projects.coreCommonui.lemmyui)
|
||
|
implementation(projects.coreNavigation)
|
||
|
implementation(projects.corePersistence)
|
||
|
implementation(projects.coreNotifications)
|
||
|
|
||
|
implementation(projects.domainIdentity)
|
||
|
implementation(projects.domainLemmy.data)
|
||
|
implementation(projects.domainLemmy.repository)
|
||
|
|
||
|
implementation(projects.resources)
|
||
|
}
|
||
|
}
|
||
|
val commonTest by getting {
|
||
|
dependencies {
|
||
|
implementation(kotlin("test"))
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
namespace = "com.github.diegoberaldin.raccoonforlemmy.unit.ban"
|
||
|
compileSdk = libs.versions.android.targetSdk.get().toInt()
|
||
|
defaultConfig {
|
||
|
minSdk = libs.versions.android.minSdk.get().toInt()
|
||
|
}
|
||
|
}
|