![renovate[bot]](/assets/img/avatar_default.png)
* chore(deps): update kotlin and compose compiler to v2 * Update .gitignore * Fix build --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: AntsyLich <59261191+AntsyLich@users.noreply.github.com> (cherry picked from commit 46003ec25139319079abc9fde89b3afd344a1a11) # Conflicts: # .github/renovate.json5 # gradle/compose.versions.toml # source-local/src/androidMain/kotlin/tachiyomi/source/local/LocalSource.kt
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> {
|
|
compilerOptions.freeCompilerArgs.addAll(
|
|
"-Xexpect-actual-classes",
|
|
"-opt-in=kotlinx.serialization.ExperimentalSerializationApi",
|
|
)
|
|
}
|
|
}
|