Skip to content

mkj-gram/rover-android

 
 

Repository files navigation

Rover Android SDK

If you are currently using Rover SDK 1.x, please see the latest 1.x release README.


Rover Android SDK 2.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 "http://roverplatform.github.io/rover-android/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:core:2.2.9"
    implementation "io.rover:notifications:2.2.9"
    implementation "io.rover:experiences:2.2.9"
    implementation "io.rover:location:2.2.9"
    implementation "io.rover:debug:2.2.9"
}

Please continue onwards from https://developer.rover.io/android/.

Packages

No packages published

Languages

  • Java 63.1%
  • Kotlin 36.9%