From 41a8667a268c353e14b79706e9e43c73fc120b2a Mon Sep 17 00:00:00 2001 From: Elv1zz Date: Mon, 30 Jan 2023 20:43:27 +0100 Subject: [PATCH] Temporary change to make automated tests run Since the official nextcloud android-library does not have the new `AdvancedX509KeyManager`, the automated tests cannot build th e app. So for that I refer to my fork of the android-library for now. This commit shall be reverted before merge. Signed-off-by: Elv1zz --- app/build.gradle | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index f815b4ac8c..2d3d4ae013 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -240,7 +240,10 @@ android { dependencies { // dependencies for app building implementation 'androidx.multidex:multidex:2.0.1' - implementation("com.github.nextcloud:android-library:$androidLibraryVersion") { +// implementation("com.github.nextcloud:android-library:$androidLibraryVersion") { + // temporarily using my own version of the nextcloud android-library so automated compile and unit tests + // are able to build the app. should be removed before merging. + implementation("com.github.elv1zz:nextcloud-android-library:$androidLibraryVersion") { exclude group: 'org.ogce', module: 'xpp3' // unused in Android and brings wrong Junit version }