2023-01-21 23:37:07 +08:00
|
|
|
plugins {
|
|
|
|
id("com.android.library")
|
|
|
|
kotlin("android")
|
2023-04-30 10:14:49 +08:00
|
|
|
kotlin("plugin.serialization")
|
2023-06-25 10:49:36 +08:00
|
|
|
id("app.cash.sqldelight")
|
2023-01-21 23:37:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace = "tachiyomi.data"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
|
|
}
|
|
|
|
|
|
|
|
sqldelight {
|
2023-06-25 10:49:36 +08:00
|
|
|
databases {
|
|
|
|
create("Database") {
|
|
|
|
packageName.set("tachiyomi.data")
|
|
|
|
dialect(libs.sqldelight.dialects.sql)
|
|
|
|
schemaOutputDirectory.set(project.file("./src/main/sqldelight"))
|
|
|
|
}
|
2023-01-21 23:37:07 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(project(":source-api"))
|
2023-01-22 23:12:29 +08:00
|
|
|
implementation(project(":domain"))
|
2023-01-23 00:44:39 +08:00
|
|
|
implementation(project(":core"))
|
2023-02-21 08:02:38 +08:00
|
|
|
|
2023-06-25 10:49:36 +08:00
|
|
|
api(libs.bundles.sqldelight)
|
2023-01-21 23:37:07 +08:00
|
|
|
}
|
2023-04-30 10:14:49 +08:00
|
|
|
|
|
|
|
tasks {
|
|
|
|
withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
|
|
|
kotlinOptions.freeCompilerArgs += listOf(
|
|
|
|
"-Xcontext-receivers",
|
|
|
|
"-opt-in=kotlinx.serialization.ExperimentalSerializationApi",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|