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

github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle11
1 files changed, 8 insertions, 3 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 87e44d2b0..cb58fa9d2 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -72,12 +72,11 @@ dependencies {
def lifecycleVersion = "2.6.2"
def roomVersion = "2.6.1"
def glideVersion = "4.16.0"
- def nextcloudCommonsVersion = "1.9.0"
- def androidCommonsVersion = "0.4.0"
+ def nextcloudCommonsVersion = "2.0.0"
+ def androidCommonsVersion = "1.0.0"
implementation project(path: ':cross-tab-drag-and-drop')
implementation project(path: ':tab-layout-helper')
- implementation project(path: ':reactive-livedata')
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.4'
@@ -114,6 +113,7 @@ dependencies {
}
implementation "com.github.stefan-niedermann.android-commons:util:$androidCommonsVersion"
implementation "com.github.stefan-niedermann.android-commons:shared-preferences:$androidCommonsVersion"
+ implementation "com.github.stefan-niedermann.android-commons:reactive-livedata:$androidCommonsVersion"
// Custom Date / Time Picker for branding support
implementation 'com.wdullaer:materialdatetimepicker:4.2.3'
@@ -143,3 +143,8 @@ dependencies {
testImplementation 'androidx.test:core:1.5.0'
testImplementation 'androidx.arch.core:core-testing:2.2.0'
}
+configurations.all {
+ resolutionStrategy {
+ force "com.github.stefan-niedermann.android-commons:util:new-util-api-4-SNAPSHOT"
+ }
+}