9c3cc1ca5f
- 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
31 lines
653 B
Kotlin
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)
|
|
}
|