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