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
29 lines
635 B
Kotlin
29 lines
635 B
Kotlin
plugins {
|
|
alias(mihonx.plugins.android.library)
|
|
alias(mihonx.plugins.spotless)
|
|
|
|
alias(libs.plugins.kotlin.serialization)
|
|
}
|
|
|
|
android {
|
|
namespace = "eu.kanade.tachiyomi.source"
|
|
|
|
defaultConfig {
|
|
consumerProguardFiles("consumer-proguard.pro")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.core.common)
|
|
|
|
implementation(libs.kotlinx.serialization.json)
|
|
implementation(libs.injekt)
|
|
implementation(libs.rxJava)
|
|
implementation(libs.jsoup)
|
|
|
|
implementation(libs.androidx.preference)
|
|
|
|
implementation(platform(libs.androidx.compose.bom))
|
|
implementation(libs.androidx.compose.runtime)
|
|
}
|