Loading README.md +9 −9 Original line number Diff line number Diff line [](https://gitlab.com/bitfireAT/dav4android/commits/master) [](https://gitlab.com/bitfireAT/dav4jvm/commits/master) # dav4android # dav4jvm dav4android is an Android WebDAV/CalDAV/CardDAV library which has initially been developed for [DAVdroid](https://www.davdroid.com). dav4jvm is a WebDAV/CalDAV/CardDAV library for JVM (Java/Kotlin). It was developed for [DAVx⁵](https://www.davx5.com) initially. Original repository: https://gitlab.com/bitfireAT/dav4android/ Original repository: https://gitlab.com/bitfireAT/dav4jvm/ Generated KDoc: https://bitfireAT.gitlab.io/dav4android/dokka/dav4android/ Generated KDoc: https://bitfireAT.gitlab.io/dav4jvm/dokka/dav4jvm/ ## Contact / License dav4android is licensed under [Mozilla Public License, v. 2.0](LICENSE). dav4jvm is licensed under [Mozilla Public License, v. 2.0](LICENSE). For questions, suggestions etc. please use the DAVdroid forum: https://www.davdroid.com/forums/ For questions, suggestions etc. please use this forum: https://forums.bitfire.at/category/18/libraries If you want to contribute, please work in your own repository and then notify us on your changes so that we can backport them. Loading src/main/AndroidManifest.xmldeleted 100644 → 0 +0 −12 Original line number Diff line number Diff line <!-- ~ This Source Code Form is subject to the terms of the Mozilla Public ~ License, v. 2.0. If a copy of the MPL was not distributed with this ~ file, You can obtain one at http://mozilla.org/MPL/2.0/. --> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="at.bitfire.dav4android"> <uses-permission android:name="android.permission.INTERNET"/> </manifest> src/main/kotlin/at/bitfire/dav4android/BasicDigestAuthHandler.kt→src/main/kotlin/at/bitfire/dav4jvm/BasicDigestAuthHandler.kt +1 −1 Original line number Diff line number Diff line Loading @@ -4,7 +4,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package at.bitfire.dav4android package at.bitfire.dav4jvm import okhttp3.* import okhttp3.Response Loading src/main/kotlin/at/bitfire/dav4android/Constants.kt→src/main/kotlin/at/bitfire/dav4jvm/Constants.kt +2 −2 Original line number Diff line number Diff line Loading @@ -4,13 +4,13 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package at.bitfire.dav4android package at.bitfire.dav4jvm import java.util.logging.Logger object Constants { var log = Logger.getLogger("dav4android")!! var log = Logger.getLogger("dav4jvm")!! const val okhttpVersion = BuildConfig.okhttpVersion Loading src/main/kotlin/at/bitfire/dav4android/DavAddressBook.kt→src/main/kotlin/at/bitfire/dav4jvm/DavAddressBook.kt +3 −3 Original line number Diff line number Diff line Loading @@ -4,10 +4,10 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package at.bitfire.dav4android package at.bitfire.dav4jvm import at.bitfire.dav4android.exception.DavException import at.bitfire.dav4android.exception.HttpException import at.bitfire.dav4jvm.exception.DavException import at.bitfire.dav4jvm.exception.HttpException import okhttp3.* import java.io.IOException import java.io.StringWriter Loading Loading
README.md +9 −9 Original line number Diff line number Diff line [](https://gitlab.com/bitfireAT/dav4android/commits/master) [](https://gitlab.com/bitfireAT/dav4jvm/commits/master) # dav4android # dav4jvm dav4android is an Android WebDAV/CalDAV/CardDAV library which has initially been developed for [DAVdroid](https://www.davdroid.com). dav4jvm is a WebDAV/CalDAV/CardDAV library for JVM (Java/Kotlin). It was developed for [DAVx⁵](https://www.davx5.com) initially. Original repository: https://gitlab.com/bitfireAT/dav4android/ Original repository: https://gitlab.com/bitfireAT/dav4jvm/ Generated KDoc: https://bitfireAT.gitlab.io/dav4android/dokka/dav4android/ Generated KDoc: https://bitfireAT.gitlab.io/dav4jvm/dokka/dav4jvm/ ## Contact / License dav4android is licensed under [Mozilla Public License, v. 2.0](LICENSE). dav4jvm is licensed under [Mozilla Public License, v. 2.0](LICENSE). For questions, suggestions etc. please use the DAVdroid forum: https://www.davdroid.com/forums/ For questions, suggestions etc. please use this forum: https://forums.bitfire.at/category/18/libraries If you want to contribute, please work in your own repository and then notify us on your changes so that we can backport them. Loading
src/main/AndroidManifest.xmldeleted 100644 → 0 +0 −12 Original line number Diff line number Diff line <!-- ~ This Source Code Form is subject to the terms of the Mozilla Public ~ License, v. 2.0. If a copy of the MPL was not distributed with this ~ file, You can obtain one at http://mozilla.org/MPL/2.0/. --> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="at.bitfire.dav4android"> <uses-permission android:name="android.permission.INTERNET"/> </manifest>
src/main/kotlin/at/bitfire/dav4android/BasicDigestAuthHandler.kt→src/main/kotlin/at/bitfire/dav4jvm/BasicDigestAuthHandler.kt +1 −1 Original line number Diff line number Diff line Loading @@ -4,7 +4,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package at.bitfire.dav4android package at.bitfire.dav4jvm import okhttp3.* import okhttp3.Response Loading
src/main/kotlin/at/bitfire/dav4android/Constants.kt→src/main/kotlin/at/bitfire/dav4jvm/Constants.kt +2 −2 Original line number Diff line number Diff line Loading @@ -4,13 +4,13 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package at.bitfire.dav4android package at.bitfire.dav4jvm import java.util.logging.Logger object Constants { var log = Logger.getLogger("dav4android")!! var log = Logger.getLogger("dav4jvm")!! const val okhttpVersion = BuildConfig.okhttpVersion Loading
src/main/kotlin/at/bitfire/dav4android/DavAddressBook.kt→src/main/kotlin/at/bitfire/dav4jvm/DavAddressBook.kt +3 −3 Original line number Diff line number Diff line Loading @@ -4,10 +4,10 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package at.bitfire.dav4android package at.bitfire.dav4jvm import at.bitfire.dav4android.exception.DavException import at.bitfire.dav4android.exception.HttpException import at.bitfire.dav4jvm.exception.DavException import at.bitfire.dav4jvm.exception.HttpException import okhttp3.* import java.io.IOException import java.io.StringWriter Loading