mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-05 08:55:07 +01:00
d3a73fc228
To keep the commit from being 100+ files the interactors wasn't moved. The domain module like the data module uses `tachiyomi` instead of `eu.kanade.tachiyomi` for package names
29 lines
583 B
Plaintext
29 lines
583 B
Plaintext
plugins {
|
|
id("com.android.library")
|
|
kotlin("android")
|
|
id("com.squareup.sqldelight")
|
|
}
|
|
|
|
android {
|
|
namespace = "tachiyomi.data"
|
|
|
|
defaultConfig {
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
}
|
|
|
|
sqldelight {
|
|
database("Database") {
|
|
packageName = "tachiyomi.data"
|
|
dialect = "sqlite:3.24"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":source-api"))
|
|
implementation(project(":domain"))
|
|
api(libs.sqldelight.android.driver)
|
|
api(libs.sqldelight.coroutines)
|
|
api(libs.sqldelight.android.paging)
|
|
}
|