mirror of
https://github.com/nextcloud/android.git
synced 2024-11-26 07:05:49 +03:00
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 <elv1zz.git@gmail.com>
This commit is contained in:
parent
45e369bae8
commit
41a8667a26
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue