mirror of
https://github.com/LiveFastEatTrashRaccoon/RaccoonForLemmy.git
synced 2025-02-02 02:26:43 +01:00
e0ee7eb4e0
* update version catalog * remove convention plugin * create :core:di module * migrate android and ios apps * migrate :shared module * migrate core modules * migrate domain modules * migrate feature modules * migrate unit modules * update licences screen * update documentation * add a test for ProfileSideMenuViewModel
22 lines
589 B
Plaintext
22 lines
589 B
Plaintext
plugins {
|
|
id("com.livefast.eattrash.kotlinMultiplatform")
|
|
id("com.livefast.eattrash.composeMultiplatform")
|
|
id("com.livefast.eattrash.androidTest")
|
|
alias(libs.plugins.kotlinx.kover)
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
val commonMain by getting {
|
|
dependencies {
|
|
implementation(libs.kodein)
|
|
|
|
implementation(projects.core.appearance)
|
|
implementation(projects.core.di)
|
|
implementation(projects.core.persistence)
|
|
implementation(projects.domain.lemmy.data)
|
|
}
|
|
}
|
|
}
|
|
}
|