2023-02-27 00:16:49 +03:00
|
|
|
plugins {
|
2024-04-06 08:07:11 +03:00
|
|
|
id("mihon.library")
|
2023-03-05 18:16:19 +03:00
|
|
|
kotlin("multiplatform")
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
2023-06-25 05:49:36 +03:00
|
|
|
androidTarget()
|
2023-03-05 18:16:19 +03:00
|
|
|
sourceSets {
|
|
|
|
val commonMain by getting {
|
|
|
|
dependencies {
|
2024-01-23 15:35:58 +03:00
|
|
|
implementation(projects.sourceApi)
|
|
|
|
api(projects.i18n)
|
2023-11-18 21:54:56 +03:00
|
|
|
|
2023-03-05 18:16:19 +03:00
|
|
|
implementation(libs.unifile)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
val androidMain by getting {
|
|
|
|
dependencies {
|
2024-01-29 12:11:28 +03:00
|
|
|
implementation(projects.core.common)
|
2024-01-23 15:35:58 +03:00
|
|
|
implementation(projects.coreMetadata)
|
2023-03-05 18:16:19 +03:00
|
|
|
|
|
|
|
// Move ChapterRecognition to separate module?
|
2024-01-23 15:35:58 +03:00
|
|
|
implementation(projects.domain)
|
2023-03-05 18:16:19 +03:00
|
|
|
|
|
|
|
implementation(kotlinx.bundles.serialization)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-02-27 00:16:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace = "tachiyomi.source.local"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
|
|
}
|
|
|
|
}
|
2023-06-01 05:47:31 +03:00
|
|
|
|
|
|
|
tasks {
|
|
|
|
withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
2024-06-07 00:48:35 +03:00
|
|
|
compilerOptions.freeCompilerArgs.addAll(
|
2023-11-19 18:54:19 +03:00
|
|
|
"-Xexpect-actual-classes",
|
2023-06-01 05:47:31 +03:00
|
|
|
"-opt-in=kotlinx.serialization.ExperimentalSerializationApi",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|