# sardine-java **Repository Path**: mirrors_donglua/sardine-java ## Basic Information - **Project Name**: sardine-java - **Description**: A WebDAV library for Android - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-03-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # sardine-java [![Build Status](https://circleci.com/gh/thegrizzlylabs/sardine-android.svg?&style=shield)](https://circleci.com/gh/thegrizzlylabs/sardine-android) [![Version number](https://img.shields.io/bintray/v/guillaume-tgl/maven/sardine-android.svg) ](https://bintray.com/guillaume-tgl/maven/sardine-android/_latestVersion) A WebDAV client for Java, using [OkHttp](https://github.com/square/okhttp) as HTTP client. ## Getting started - Edit your app-level `build.gradle` (see top of this page for the latest version): ``` dependencies { ... implementation 'com.thegrizzlylabs.sardine-android:sardine-android:' } ``` - Create a `Sardine` client: ``` Sardine sardine = new OkHttpSardine(); sardine.setCredentials("username", "password"); ``` - Use the client to make requests to your WebDAV server: ``` List resources = sardine.list("http://webdav.server.com"); ``` ## Legacy Originally forked from [Sardine](https://github.com/lookfirst/sardine) [Apache HTTP Client](http://hc.apache.org/) was replaced by [OkHttp](https://github.com/square/okhttp) JAXB was replaced by [SimpleXml](http://simple.sourceforge.net/)