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 {
|
2023-06-25 04:49:36 +02:00
|
|
|
androidTarget()
|
2023-03-05 16:16:19 +01:00
|
|
|
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)
|
2023-05-13 18:05:19 +02:00
|
|
|
|
|
|
|
// Workaround for https://youtrack.jetbrains.com/issue/KT-57605
|
|
|
|
implementation(kotlinx.coroutines.android)
|
|
|
|
implementation(project.dependencies.platform(kotlinx.coroutines.bom))
|
2023-03-05 16:16:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
}
|