37 lines
1.0 KiB
Kotlin
37 lines
1.0 KiB
Kotlin
plugins {
|
|
id("com.android.library")
|
|
id("com.google.devtools.ksp")
|
|
id("org.jetbrains.kotlin.android")
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(17)
|
|
}
|
|
|
|
android {
|
|
namespace = "com.rtbishop.look4sat.data"
|
|
compileSdk = 34
|
|
defaultConfig {
|
|
minSdk = 21
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":domain"))
|
|
|
|
implementation("androidx.core:core-ktx:1.12.0")
|
|
implementation("androidx.room:room-runtime:2.5.2")
|
|
implementation("androidx.room:room-ktx:2.5.2")
|
|
ksp("androidx.room:room-compiler:2.5.2")
|
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3")
|
|
implementation("com.squareup.okhttp3:okhttp:4.10.0")
|
|
|
|
testImplementation("junit:junit:4.13.2")
|
|
testImplementation("io.mockk:mockk:1.13.8")
|
|
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3")
|
|
androidTestImplementation("androidx.test.ext:junit:1.1.5")
|
|
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
|
|
}
|