> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://wiki.leviia.com/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# Utiliser l'API Leviia Drive - Java/Android

###### Initialisation :

Pour manipuler vos fichiers Leviia depuis un programme Java, il vous faut d'abord importer la library sardine.

Voici comment faire :

###### Java :

Pour Java, il suffit de rajouter ces lignes à votre pom.xml :

```java
  <dependency>
    <groupId>com.github.lookfirst</groupId>
    <artifactId>sardine</artifactId>
    <version>5.10</version>
  </dependency>
```

###### Android :

Pour Android, il suffit d'ouvrir votre fichier Gradle (application) et d'y ajouter :

```java
  <dependency>
    <groupId>com.github.lookfirst</groupId>
    <artifactId>sardine</artifactId>
    <version>5.10</version>
  </dependency>
```
