Files
mihon-bookoasis/source-local/build.gradle.kts
T
AntsyLich 9c3cc1ca5f Convert :source-api and :source-local to android library module (#3636)
- There's really no plan to support other platforms on this code base
- The "KMP" modules only had android target which is rather pointless
- `i18n` involves more work but given it has no actual code keeping it as is
2026-07-23 16:47:24 +00:00

31 lines
653 B
Kotlin

plugins {
alias(mihonx.plugins.android.library)
alias(mihonx.plugins.spotless)
}
android {
namespace = "tachiyomi.source.local"
}
kotlin {
compilerOptions {
optIn.add("kotlinx.serialization.ExperimentalSerializationApi")
}
}
dependencies {
implementation(projects.sourceApi)
implementation(projects.i18n)
implementation(projects.core.archive)
implementation(projects.core.common)
implementation(projects.coreMetadata)
implementation(projects.domain)
implementation(libs.unifile)
implementation(libs.bundles.serialization)
implementation(libs.injekt)
implementation(libs.jsoup)
}