Remove unused android test dependencies

There are no android tests right now, only unit
This commit is contained in:
Kirill Kamakin
2021-11-20 09:52:28 +03:00
parent 9d948616c9
commit 2250fcfaa9

View File

@@ -16,8 +16,6 @@ android {
targetSdk 31 targetSdk 31
versionCode 1 versionCode 1
versionName "1.0" versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
} }
buildTypes { buildTypes {
@@ -60,7 +58,6 @@ dependencies {
implementation "androidx.navigation:navigation-fragment-ktx:$nav_version" implementation "androidx.navigation:navigation-fragment-ktx:$nav_version"
implementation "androidx.navigation:navigation-runtime-ktx:$nav_version" implementation "androidx.navigation:navigation-runtime-ktx:$nav_version"
implementation "androidx.navigation:navigation-ui-ktx:$nav_version" implementation "androidx.navigation:navigation-ui-ktx:$nav_version"
androidTestImplementation "androidx.navigation:navigation-testing:$nav_version"
// https://developer.android.com/kotlin/ktx#core // https://developer.android.com/kotlin/ktx#core
implementation "androidx.core:core-ktx:1.7.0" implementation "androidx.core:core-ktx:1.7.0"
@@ -140,7 +137,4 @@ dependencies {
// https://mvnrepository.com/artifact/com.google.truth/truth // https://mvnrepository.com/artifact/com.google.truth/truth
testImplementation "com.google.truth:truth:1.1.3" testImplementation "com.google.truth:truth:1.1.3"
// https://developer.android.com/jetpack/androidx/releases/test
androidTestImplementation "androidx.test.espresso:espresso-core:3.4.0"
} }