Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/schaal/ocreader.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Schaal <daniel@schaal.email>2021-07-06 07:34:59 +0300
committerDaniel Schaal <daniel@schaal.email>2021-07-06 07:34:59 +0300
commitfe1b1e535b2aa2d50d6cab896202bf093f4b09b4 (patch)
tree28d0b819298965286ddd411c3ca0ec9e9585fb7b
parentcd385d50cb2a16ab4a3f4632cf088bb725cc73a0 (diff)
Update androidx dependencies
-rw-r--r--app/build.gradle18
1 files changed, 10 insertions, 8 deletions
diff --git a/app/build.gradle b/app/build.gradle
index b5202693..6a583a08 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -86,8 +86,10 @@ ext {
glide : '4.12.0',
lifecycle : '2.3.1',
moshi : '1.12.0',
- core : '1.5.0',
- annotation : '1.2.0'
+ core : '1.6.0',
+ annotation : '1.2.0',
+ junit_ext : '1.1.3',
+ espresso : '1.4.0'
]
}
@@ -119,7 +121,7 @@ dependencies {
implementation "androidx.annotation:annotation:${versions.annotation}"
kapt "androidx.annotation:annotation:${versions.annotation}"
- implementation 'com.google.android.material:material:1.3.0'
+ implementation 'com.google.android.material:material:1.4.0'
implementation "com.mikepenz:aboutlibraries:$about_libraries_version"
@@ -141,14 +143,14 @@ dependencies {
implementation 'com.github.zafarkhaja:java-semver:0.9.0'
- androidTestImplementation 'androidx.test.ext:junit:1.1.2'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
- androidTestImplementation 'androidx.test.espresso:espresso-intents:3.3.0'
+ androidTestImplementation "androidx.test.ext:junit:${versions.junit_ext}"
+ androidTestImplementation "androidx.test.espresso:espresso-core:${versions.espresso}"
+ androidTestImplementation "androidx.test.espresso:espresso-intents:${versions.espresso}"
androidTestImplementation "com.squareup.okhttp3:mockwebserver:${versions.okhttp}"
- testImplementation 'androidx.test:core:1.3.0'
- testImplementation 'androidx.test.ext:junit:1.1.2'
+ testImplementation 'androidx.test:core:1.4.0'
+ testImplementation "androidx.test.ext:junit:${versions.junit_ext}"
testImplementation 'org.robolectric:robolectric:4.5.1'
testImplementation 'junit:junit:4.13.2'
}