2023-01-21 18:37:07 +03:00
|
|
|
plugins {
|
2024-04-06 08:07:11 +03:00
|
|
|
id("mihon.library")
|
2023-01-21 18:37:07 +03:00
|
|
|
kotlin("android")
|
2023-04-30 05:14:49 +03:00
|
|
|
kotlin("plugin.serialization")
|
2024-09-03 11:09:12 +03:00
|
|
|
alias(libs.plugins.sqldelight)
|
2023-01-21 18:37:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace = "tachiyomi.data"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
|
|
}
|
|
|
|
|
|
|
|
sqldelight {
|
2023-06-25 05:49:36 +03:00
|
|
|
databases {
|
|
|
|
create("Database") {
|
|
|
|
packageName.set("tachiyomi.data")
|
|
|
|
dialect(libs.sqldelight.dialects.sql)
|
|
|
|
schemaOutputDirectory.set(project.file("./src/main/sqldelight"))
|
|
|
|
}
|
2023-01-21 18:37:07 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-31 17:17:27 +03:00
|
|
|
kotlin {
|
|
|
|
compilerOptions {
|
|
|
|
freeCompilerArgs.add("-opt-in=kotlinx.serialization.ExperimentalSerializationApi")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-21 18:37:07 +03:00
|
|
|
dependencies {
|
2024-01-23 15:35:58 +03:00
|
|
|
implementation(projects.sourceApi)
|
|
|
|
implementation(projects.domain)
|
2024-01-29 12:11:28 +03:00
|
|
|
implementation(projects.core.common)
|
2023-02-21 03:02:38 +03:00
|
|
|
|
2023-06-25 05:49:36 +03:00
|
|
|
api(libs.bundles.sqldelight)
|
2023-01-21 18:37:07 +03:00
|
|
|
}
|