build: remove unused dependencies

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2021-03-16 18:32:40 +05:30
parent ab6816be62
commit 0388010c8b
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
2 changed files with 0 additions and 12 deletions

View file

@ -49,5 +49,4 @@ dependencies {
implementation(Dependencies.ThirdParty.SQLDelight.androidDriver) implementation(Dependencies.ThirdParty.SQLDelight.androidDriver)
testImplementation(Dependencies.Testing.junit) testImplementation(Dependencies.Testing.junit)
androidTestImplementation(Dependencies.AndroidX.Compose.activity) androidTestImplementation(Dependencies.AndroidX.Compose.activity)
androidTestImplementation(Dependencies.Testing.daggerHilt)
} }

View file

@ -94,18 +94,7 @@ object Dependencies {
object Testing { object Testing {
const val daggerHilt = "com.google.dagger:hilt-android-testing:$DAGGER_HILT_VERSION"
const val junit = "junit:junit:4.13.2" const val junit = "junit:junit:4.13.2"
const val mockWebServer = "com.squareup.okhttp3:mockwebserver3-junit4:5.0.0-alpha.2" const val mockWebServer = "com.squareup.okhttp3:mockwebserver3-junit4:5.0.0-alpha.2"
object AndroidX {
private const val version = "1.3.1-alpha02"
object Compose {
const val uiTestJunit4 = "androidx.compose.ui:ui-test-junit4:$COMPOSE_VERSION"
}
}
} }
} }