2021-05-14 19:51:08 +03:00
|
|
|
plugins {
|
|
|
|
kotlin("android")
|
|
|
|
id("kotlinx-serialization")
|
2021-09-11 09:53:09 +03:00
|
|
|
id("com.android.library")
|
2021-05-14 19:51:08 +03:00
|
|
|
id("com.google.devtools.ksp")
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-09-11 09:53:09 +03:00
|
|
|
implementation(project(":core"))
|
|
|
|
implementation(project(":common"))
|
2021-06-13 07:32:10 +03:00
|
|
|
|
2022-03-22 08:48:02 +03:00
|
|
|
ksp(libs.kaidl.compiler)
|
2022-07-01 07:07:23 +03:00
|
|
|
ksp(libs.androidx.room.compiler)
|
2022-01-14 18:40:41 +03:00
|
|
|
|
2022-03-22 08:48:02 +03:00
|
|
|
implementation(libs.kotlin.coroutine)
|
|
|
|
implementation(libs.kotlin.serialization.json)
|
|
|
|
implementation(libs.androidx.core)
|
|
|
|
implementation(libs.androidx.room.runtime)
|
|
|
|
implementation(libs.androidx.room.ktx)
|
|
|
|
implementation(libs.kaidl.runtime)
|
|
|
|
implementation(libs.rikkax.multiprocess)
|
2022-12-09 21:05:45 +03:00
|
|
|
implementation(platform("com.squareup.okhttp3:okhttp-bom:4.10.0"))
|
|
|
|
|
|
|
|
// define any required OkHttp artifacts without version
|
|
|
|
implementation("com.squareup.okhttp3:okhttp")
|
|
|
|
implementation("com.squareup.okhttp3:logging-interceptor")
|
2021-05-25 14:40:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
afterEvaluate {
|
|
|
|
android {
|
|
|
|
libraryVariants.forEach {
|
2022-07-01 07:07:23 +03:00
|
|
|
sourceSets[it.name].kotlin.srcDir(buildDir.resolve("generated/ksp/${it.name}/kotlin"))
|
|
|
|
sourceSets[it.name].java.srcDir(buildDir.resolve("generated/ksp/${it.name}/java"))
|
2021-05-25 14:40:44 +03:00
|
|
|
}
|
|
|
|
}
|
2021-05-14 19:51:08 +03:00
|
|
|
}
|