Skip to main content
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")
}