In your root build.gradle or settings.gradle, make sure you’ve included JitPack:
allprojects {
    repositories {
        ...
        maven { url 'https://jitpack.io' }
    }
}
And add the dependency, normally in the module-level build.gradle:
dependencies {
    implementation 'altude:gasstation:@lastest'
}