mirror of
https://github.com/LiveFastEatTrashRaccoon/RaccoonForLemmy.git
synced 2025-02-08 18:18:44 +01:00
27 lines
756 B
Plaintext
27 lines
756 B
Plaintext
plugins {
|
|
id("com.livefast.eattrash.kotlinMultiplatform")
|
|
id("com.livefast.eattrash.composeMultiplatform")
|
|
}
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
val androidMain by getting {
|
|
dependencies {
|
|
implementation(libs.multiplatform.markdown.renderer.coil3)
|
|
}
|
|
}
|
|
val commonMain by getting {
|
|
dependencies {
|
|
api(libs.multiplatform.markdown.renderer)
|
|
api(libs.multiplatform.markdown.renderer.m3)
|
|
api(libs.multiplatform.markdown.renderer.coil3)
|
|
|
|
implementation(projects.core.l10n)
|
|
implementation(projects.core.commonui.components)
|
|
implementation(projects.core.utils)
|
|
}
|
|
}
|
|
}
|
|
}
|