An open API service indexing awesome lists of open source software.

https://github.com/alexbakker/webdav-provider

An Android app that can expose WebDAV storage to other apps through Android's Storage Access Framework (SAF)
https://github.com/alexbakker/webdav-provider

Last synced: 7 months ago
JSON representation

An Android app that can expose WebDAV storage to other apps through Android's Storage Access Framework (SAF)

Awesome Lists containing this project

README

          

App icon

# WebDAV Provider [![build](https://github.com/alexbakker/webdav-provider/actions/workflows/build.yaml/badge.svg)](https://github.com/alexbakker/webdav-provider/actions/workflows/build.yaml)

__WebDAV Provider__ is an Android app that can expose WebDAV through Android's
Storage Access Framework (SAF). This allows you to access your WebDAV storage
through Android's built-in file explorer, as well as other apps on your device.

[Get it on Google Play](https://play.google.com/store/apps/details?id=dev.rocli.android.webdav)

## Screenshots

[](screenshots/screenshot1.png) [](screenshots/screenshot2.png)
[](screenshots/screenshot3.png) [](screenshots/screenshot4.png)

## Development

This project is automatically tested against a variety of different WebDAV servers. The tests run in an Android emulator and connect to the WebDAV servers running in separate containers on the host machine.

To spin up the test environment:

```sh
docker compose --project-directory tests up -d --wait --force-recreate --build --renew-anon-volumes --remove-orphans
```

Assuming an Android emulator is running, use the following command to run the tests:

```sh
./gradlew connectedCheck
```

To shut the test environment down:

```sh
docker compose --project-directory tests down -v
```