2024-04-06 07:07:11 +02:00
|
|
|
import mihon.buildlogic.tasks.getLocalesConfigTask
|
|
|
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
|
2022-09-10 15:58:45 +02:00
|
|
|
plugins {
|
2024-04-06 07:07:11 +02:00
|
|
|
id("mihon.library")
|
2023-11-18 19:54:56 +01:00
|
|
|
id("dev.icerock.mobile.multiplatform-resources")
|
2024-04-06 07:07:11 +02:00
|
|
|
kotlin("multiplatform")
|
2023-11-18 19:54:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
androidTarget()
|
2024-01-29 09:13:55 +01:00
|
|
|
|
|
|
|
applyDefaultHierarchyTemplate()
|
|
|
|
|
2023-11-18 19:54:56 +01:00
|
|
|
sourceSets {
|
|
|
|
val commonMain by getting {
|
|
|
|
dependencies {
|
|
|
|
api(libs.moko.core)
|
|
|
|
}
|
|
|
|
}
|
2024-01-29 09:13:55 +01:00
|
|
|
|
|
|
|
androidMain {
|
|
|
|
dependsOn(commonMain) // https://github.com/icerockdev/moko-resources/issues/562
|
2023-11-18 19:54:56 +01:00
|
|
|
}
|
|
|
|
}
|
2022-09-10 15:58:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2023-01-22 16:37:13 +01:00
|
|
|
namespace = "tachiyomi.i18n"
|
2022-10-05 15:26:42 +02:00
|
|
|
|
2023-11-18 19:54:56 +01:00
|
|
|
sourceSets {
|
|
|
|
named("main") {
|
|
|
|
res.srcDir("src/commonMain/resources")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-05 15:26:42 +02:00
|
|
|
lint {
|
|
|
|
disable.addAll(listOf("MissingTranslation", "ExtraTranslation"))
|
|
|
|
}
|
2022-09-10 15:58:45 +02:00
|
|
|
}
|
|
|
|
|
2023-11-18 19:54:56 +01:00
|
|
|
multiplatformResources {
|
|
|
|
multiplatformResourcesPackage = "tachiyomi.i18n"
|
|
|
|
}
|
|
|
|
|
2022-09-10 15:58:45 +02:00
|
|
|
tasks {
|
2024-04-06 07:07:11 +02:00
|
|
|
val localesConfigTask = project.getLocalesConfigTask()
|
2022-09-10 15:58:45 +02:00
|
|
|
preBuild {
|
2023-11-18 19:54:56 +01:00
|
|
|
dependsOn(localesConfigTask)
|
2022-09-10 15:58:45 +02:00
|
|
|
}
|
2023-11-19 16:54:19 +01:00
|
|
|
|
2024-04-06 07:07:11 +02:00
|
|
|
withType<KotlinCompile> {
|
2024-06-06 23:48:35 +02:00
|
|
|
compilerOptions.freeCompilerArgs.addAll(
|
2023-11-19 16:54:19 +01:00
|
|
|
"-Xexpect-actual-classes",
|
|
|
|
)
|
|
|
|
}
|
2022-09-10 15:58:45 +02:00
|
|
|
}
|