aboutsummaryrefslogtreecommitdiff
path: root/rules.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'rules.gradle')
-rw-r--r--rules.gradle10
1 files changed, 5 insertions, 5 deletions
diff --git a/rules.gradle b/rules.gradle
index 49aa24b..fd660cd 100644
--- a/rules.gradle
+++ b/rules.gradle
@@ -20,15 +20,15 @@ tasks.withType(JavaCompile) {
}
dependencies {
- provided "com.android.support:support-annotations:27.1.1"
+ implementation "androidx.annotation:annotation:1.0.1"
}
// Check if the android plugin version supports unit testing.
if (configurations.findByName("testCompile")) {
dependencies {
- testCompile "junit:junit:4.12"
- testCompile "org.hamcrest:hamcrest-library:1.3"
- testCompile "org.mockito:mockito-core:2.2.29"
- testCompile "org.robolectric:robolectric:3.0"
+ testCompile "junit:junit:4.12"
+ testCompile "org.hamcrest:hamcrest-library:1.3"
+ testCompile "org.mockito:mockito-core:2.19.0"
+ testCompile "org.robolectric:robolectric:3.4.2"
}
}