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

Commit 1f48a662 authored by Ricki Hirner's avatar Ricki Hirner
Browse files

Rename to dav4jvm

parent 719ad1d3
Loading
Loading
Loading
Loading
+9 −9
Original line number Diff line number Diff line

[![build status](https://gitlab.com/bitfireAT/dav4android/badges/master/build.svg)](https://gitlab.com/bitfireAT/dav4android/commits/master)
[![build status](https://gitlab.com/bitfireAT/dav4jvm/badges/master/build.svg)](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.

src/main/AndroidManifest.xml

deleted100644 → 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>
+1 −1
Original line number Diff line number Diff line
@@ -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
+2 −2
Original line number Diff line number Diff line
@@ -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

+3 −3
Original line number Diff line number Diff line
@@ -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