
(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
55 lines
1.4 KiB
Plaintext
55 lines
1.4 KiB
Plaintext
plugins {
|
|
id("mihon.library")
|
|
kotlin("multiplatform")
|
|
}
|
|
|
|
kotlin {
|
|
androidTarget()
|
|
sourceSets {
|
|
val commonMain by getting {
|
|
dependencies {
|
|
implementation(projects.sourceApi)
|
|
api(projects.i18n)
|
|
// SY -->
|
|
api(projects.i18nSy)
|
|
// SY <--
|
|
|
|
implementation(libs.unifile)
|
|
implementation(libs.bundles.archive)
|
|
// SY -->
|
|
implementation(libs.zip4j)
|
|
// SY <--
|
|
}
|
|
}
|
|
val androidMain by getting {
|
|
dependencies {
|
|
implementation(projects.core.common)
|
|
implementation(projects.coreMetadata)
|
|
|
|
// Move ChapterRecognition to separate module?
|
|
implementation(projects.domain)
|
|
|
|
implementation(kotlinx.bundles.serialization)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
android {
|
|
namespace = "tachiyomi.source.local"
|
|
|
|
defaultConfig {
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
}
|
|
}
|
|
|
|
tasks {
|
|
withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
|
kotlinOptions.freeCompilerArgs += listOf(
|
|
"-Xexpect-actual-classes",
|
|
"-opt-in=kotlinx.serialization.ExperimentalSerializationApi",
|
|
)
|
|
}
|
|
}
|