> ## 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).

# Using the Leviia Drive API - Java/Android

###### Initialization :

To manipulate your Leviia files from within a Java program, you first need to import the sardine library.

Here's how to do it :

###### Java :

For Java, simply add these lines to your pom.xml :

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

###### Android :

For Android, simply open your Gradle file (application) and add :

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