diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2019-05-31 12:27:48 +0530 |
---|---|---|
committer | Harsh Shandilya <msfjarvis@gmail.com> | 2019-05-31 12:27:48 +0530 |
commit | 75a595f07fc27a7ef5499393c91249c13082b770 (patch) | |
tree | 92d9c3ad1e195579bc42d922bb286063d22cb816 | |
parent | 53b42905f17553b74160eaae7d5352fc7aa648d7 (diff) |
Dependency updates
Mockito 2.28.2
AndroidX Test 1.2.0
AndroidX Espresso 3.2.0
AGP 3.4.1
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
-rw-r--r-- | app/build.gradle.kts | 15 | ||||
-rw-r--r-- | build.gradle.kts | 2 |
2 files changed, 9 insertions, 8 deletions
diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 1fc4f570..d537dc21 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -1,3 +1,4 @@ +import org.gradle.api.JavaVersion.* import org.jetbrains.kotlin.config.KotlinCompilerVersion plugins { @@ -27,8 +28,8 @@ android { } compileOptions { - setSourceCompatibility(JavaVersion.VERSION_1_8) - setTargetCompatibility(JavaVersion.VERSION_1_8) + sourceCompatibility = VERSION_1_8 + targetCompatibility = VERSION_1_8 } lintOptions { @@ -87,9 +88,9 @@ dependencies { // Testing-only dependencies androidTestImplementation("junit:junit:4.12") - androidTestImplementation("org.mockito:mockito-core:2.27.0") - androidTestImplementation("androidx.test:runner:1.1.1") - androidTestImplementation("androidx.test:rules:1.1.1") - androidTestImplementation("androidx.test.espresso:espresso-core:3.1.1") - androidTestImplementation("androidx.test.espresso:espresso-intents:3.1.1") + androidTestImplementation("org.mockito:mockito-core:2.28.2") + androidTestImplementation("androidx.test:runner:1.2.0") + androidTestImplementation("androidx.test:rules:1.2.0") + androidTestImplementation("androidx.test.espresso:espresso-core:3.2.0") + androidTestImplementation("androidx.test.espresso:espresso-intents:3.2.0") } diff --git a/build.gradle.kts b/build.gradle.kts index 21ea2d4a..74fb8658 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ buildscript { mavenCentral() } dependencies { - classpath("com.android.tools.build:gradle:3.4.0") + classpath("com.android.tools.build:gradle:3.4.1") classpath(kotlin("gradle-plugin", "1.3.31")) } } |