Link "testing" as test dependency

This commit is contained in:
Kirill Kamakin
2022-11-12 14:06:57 +01:00
parent 5b9cf78317
commit 980ffd54cb
3 changed files with 7 additions and 2 deletions

View File

@@ -70,7 +70,7 @@ dependencies {
implementation(project(":datastore")) implementation(project(":datastore"))
implementation(project(":datasource")) implementation(project(":datasource"))
implementation(project(":logging")) implementation(project(":logging"))
implementation(project(":testing")) testImplementation(project(":testing"))
implementation(libs.android.material.material) implementation(libs.android.material.material)

View File

@@ -14,7 +14,7 @@ android {
dependencies { dependencies {
implementation(project(":logging")) implementation(project(":logging"))
implementation(project(":testing")) testImplementation(project(":testing"))
implementation(libs.google.dagger.hiltAndroid) implementation(libs.google.dagger.hiltAndroid)
kapt(libs.google.dagger.hiltCompiler) kapt(libs.google.dagger.hiltCompiler)

View File

@@ -6,6 +6,11 @@ plugins {
android { android {
namespace = "gq.kirmanak.mealient.test" namespace = "gq.kirmanak.mealient.test"
lint {
abortOnError = false
quiet = true
checkReleaseBuilds = false
}
} }
dependencies { dependencies {