aboutsummaryrefslogtreecommitdiff
path: root/app/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle13
1 files changed, 6 insertions, 7 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 34e57f84..2c7c5bcc 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -23,7 +23,7 @@ android {
versionCode androidGitVersion.code()
versionName androidGitVersion.name()
multiDexEnabled true
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
+ testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
applicationVariants.all { variant ->
@@ -148,14 +148,13 @@ repositories {
}
dependencies {
- androidTestImplementation("com.android.support.test:runner:${kau.testRunner}") {
- exclude group: 'com.android.support', module: 'support-annotations'
- }
-
- implementation "com.android.support:exifinterface:${kau.supportLibs}"
+ implementation 'androidx.exifinterface:exifinterface:1.0.0'
androidTestImplementation kauDependency.kotlinTest
- androidTestImplementation "com.android.support.test:rules:${TEST_RULE}"
+ androidTestImplementation kauDependency.espresso
+ androidTestImplementation kauDependency.testRules
+ androidTestImplementation kauDependency.testRunner
+
testImplementation kauDependency.kotlinTest
testImplementation "org.jetbrains.kotlin:kotlin-reflect:${KOTLIN}"
testImplementation kauDependency.junit