2022-09-16 00:12:27 +02:00
|
|
|
plugins {
|
2023-03-05 16:16:19 +01:00
|
|
|
kotlin("multiplatform")
|
2022-09-16 00:12:27 +02:00
|
|
|
kotlin("plugin.serialization")
|
2023-03-05 16:16:19 +01:00
|
|
|
id("com.android.library")
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
android()
|
|
|
|
sourceSets {
|
|
|
|
val commonMain by getting {
|
|
|
|
dependencies {
|
|
|
|
api(kotlinx.serialization.json)
|
|
|
|
api(libs.injekt.core)
|
|
|
|
api(libs.rxjava)
|
|
|
|
api(libs.jsoup)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
val androidMain by getting {
|
|
|
|
dependencies {
|
|
|
|
implementation(project(":core"))
|
|
|
|
api(libs.preferencektx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-09-16 00:12:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace = "eu.kanade.tachiyomi.source"
|
|
|
|
|
|
|
|
defaultConfig {
|
2022-09-17 16:26:02 +02:00
|
|
|
consumerProguardFile("consumer-proguard.pro")
|
2022-09-16 00:12:27 +02:00
|
|
|
}
|
|
|
|
}
|