mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-05 23:35:04 +01:00
93523ef50b
Includes side effects: - No longer need to restart app for user agent string change to take effect - parseAs extension function requires a Json instance in the calling context, which doesn't necessarily need to be the default one provided by Injekt
31 lines
621 B
Plaintext
31 lines
621 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"))
|
|
implementation(project(":core"))
|
|
|
|
api(libs.sqldelight.android.driver)
|
|
api(libs.sqldelight.coroutines)
|
|
api(libs.sqldelight.android.paging)
|
|
}
|