2022-09-10 15:58:45 +02:00
|
|
|
plugins {
|
2023-11-18 19:54:56 +01:00
|
|
|
kotlin("multiplatform")
|
2022-09-10 15:58:45 +02:00
|
|
|
id("com.android.library")
|
2023-11-18 19:54:56 +01:00
|
|
|
id("dev.icerock.mobile.multiplatform-resources")
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
androidTarget()
|
|
|
|
sourceSets {
|
|
|
|
val commonMain by getting {
|
|
|
|
dependencies {
|
|
|
|
api(libs.moko.core)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
val androidMain by getting {
|
|
|
|
dependsOn(commonMain) // https://github.com/icerockdev/moko-resources/issues/562
|
|
|
|
}
|
|
|
|
}
|
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 {
|
|
|
|
val localesConfigTask = registerLocalesConfigTask(project)
|
|
|
|
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
|
|
|
|
|
|
|
withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
|
|
|
kotlinOptions.freeCompilerArgs += listOf(
|
|
|
|
"-Xexpect-actual-classes",
|
|
|
|
)
|
|
|
|
}
|
2022-09-10 15:58:45 +02:00
|
|
|
}
|