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