> ## Documentation Index
> Fetch the complete documentation index at: https://docs.altude.so/llms.txt
> Use this file to discover all available pages before exploring further.

# Install Android SDK

Add your JitPack authentication token to the root gradle.properties:

```
authToken=your_jitpack_auth_token_here
```

In your root build.gradle or settings.gradle, include the JitPack repository:

```
allprojects {
    repositories {
        ...
        maven {
            url 'https://jitpack.io'
            credentials { username = providers.gradleProperty("authToken").get() }
        }
    }
}

```

Finally, add the dependency in your module-level build.gradle:

```
dependencies {
    implementation("com.github.AltudePlatform.AndroidSDK:gasstation:v0.1.3-alpha")
}
```
