
(cherry picked from commit e448e40406e8d9916120a278e42829a6f1b25a7a) # Conflicts: # app/build.gradle.kts # buildSrc/src/main/kotlin/AndroidConfig.kt # i18n/build.gradle.kts # source-api/build.gradle.kts
49 lines
1.0 KiB
Plaintext
49 lines
1.0 KiB
Plaintext
plugins {
|
|
id("mihon.library")
|
|
id("dev.icerock.mobile.multiplatform-resources")
|
|
kotlin("multiplatform")
|
|
id("com.github.ben-manes.versions")
|
|
}
|
|
|
|
kotlin {
|
|
androidTarget()
|
|
|
|
applyDefaultHierarchyTemplate()
|
|
|
|
sourceSets {
|
|
val commonMain by getting {
|
|
dependencies {
|
|
api(libs.moko.core)
|
|
}
|
|
}
|
|
androidMain {
|
|
dependsOn(commonMain) // https://github.com/icerockdev/moko-resources/issues/562
|
|
}
|
|
}
|
|
}
|
|
|
|
android {
|
|
namespace = "tachiyomi.i18n.sy"
|
|
|
|
sourceSets {
|
|
named("main") {
|
|
res.srcDir("src/commonMain/resources")
|
|
}
|
|
}
|
|
|
|
lint {
|
|
disable.addAll(listOf("MissingTranslation", "ExtraTranslation"))
|
|
}
|
|
}
|
|
|
|
multiplatformResources {
|
|
multiplatformResourcesClassName = "SYMR"
|
|
multiplatformResourcesPackage = "tachiyomi.i18n.sy"
|
|
}
|
|
|
|
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
|
kotlinOptions.freeCompilerArgs += listOf(
|
|
"-Xexpect-actual-classes",
|
|
)
|
|
}
|