mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-21 20:47:03 -05:00
Address build warning in :i18n
And small cleanup
This commit is contained in:
parent
b71c793fad
commit
4811cf07cd
1 changed files with 6 additions and 2 deletions
|
@ -6,14 +6,18 @@ plugins {
|
||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
androidTarget()
|
androidTarget()
|
||||||
|
|
||||||
|
applyDefaultHierarchyTemplate()
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
val commonMain by getting {
|
val commonMain by getting {
|
||||||
dependencies {
|
dependencies {
|
||||||
api(libs.moko.core)
|
api(libs.moko.core)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
val androidMain by getting {
|
|
||||||
dependsOn(commonMain) // https://github.com/icerockdev/moko-resources/issues/562
|
androidMain {
|
||||||
|
dependsOn(commonMain) // https://github.com/icerockdev/moko-resources/issues/562
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue