RoverPlatform / rover-android

Android SDK for the Rover platform

Home Page:https://developer.rover.io/docs/android/install

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Rover Android SDK

Rover Android SDK 4.0

The first step is to add the library dependencies. We’ll start with a default installation, featuring all of the Rover libraries.

Ensure that you have Rover's maven repository added to the dependenciesrepositories block of your app-level build.gradle:

dependencies {
    // ...
    repositories {
        // ...
        maven {
            url "https://judoapp.github.io/judo-maven/maven"
        }
    }
}

Then add the following to your application-level build.gradle file (not the top level build.gradle, but rather your app-level one) in the dependencies block.

dependencies {
    // ...
    implementation "io.rover.sdk:core:4.0.0"
    implementation "io.rover.sdk:notifications:4.0.0"
    implementation "io.rover.sdk:location:4.0.0"
    implementation "io.rover.sdk:debug:4.0.0"
    implementation "io.rover.sdk:experiences:4.0.0"
}

Please continue onwards from https://github.com/roverplatform/rover-android/wiki.

About

Android SDK for the Rover platform

https://developer.rover.io/docs/android/install

License:Other


Languages

Language:Kotlin 99.5%Language:Java 0.5%