2022-02-24 22:55:56 +01:00
|
|
|
plugins {
|
2022-12-11 16:06:05 +01:00
|
|
|
id 'kotlin'
|
2022-12-11 13:49:48 +01:00
|
|
|
alias libs.plugins.kotlin.serialization
|
|
|
|
alias libs.plugins.sqldelight
|
2022-03-06 15:22:32 +01:00
|
|
|
id 'java-test-fixtures'
|
2022-02-24 22:55:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
sqldelight {
|
2022-12-05 23:25:06 +01:00
|
|
|
StDb {
|
|
|
|
packageName = "app.dapk.db.app"
|
2022-02-24 22:55:56 +01:00
|
|
|
}
|
|
|
|
linkSqlite = true
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation project(":core")
|
2022-12-05 23:25:06 +01:00
|
|
|
implementation "chat-engine:chat-engine"
|
2022-12-11 13:49:48 +01:00
|
|
|
implementation libs.kotlin.serialization
|
|
|
|
implementation libs.sqldelight.extensions
|
2022-03-06 15:22:32 +01:00
|
|
|
|
|
|
|
kotlinFixtures(it)
|
2022-10-08 12:35:14 +02:00
|
|
|
testImplementation(testFixtures(project(":core")))
|
|
|
|
testFixturesImplementation(testFixtures(project(":core")))}
|