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