Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 8831211f authored by Mario Đanić's avatar Mario Đanić Committed by GitHub
Browse files

Update README.md

Add a possible compatibility issue to the readme
parent 84c99c2c
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -72,3 +72,12 @@ Licensed under Apache License, Version 2.0.
Nextcloud Android library is valid for Android version 3.0 and up (with ```android:minSdkVersion="11"``` and ```android:targetSdkVersion="24"```).

Nextcloud Android library supports Nextcloud server from version 9+.

When using newer libraries in your application that integrates with the Nextcloud Android library you could hit a conflict issue with the logging libraries used by our (outdated) HTTPClient. In order to mitigate the issues, please add the following in your build.gradle for the time being:

```
configurations.all {
    exclude group: "org.slf4j", module: "slf4j-log4j12"
    exclude group: "log4j", module: "log4j"
}
```