https://github.com/roverplatform/rover-campaigns-android
https://github.com/roverplatform/rover-campaigns-android
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/roverplatform/rover-campaigns-android
- Owner: RoverPlatform
- License: apache-2.0
- Created: 2019-03-22T20:00:20.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-13T18:47:07.000Z (over 3 years ago)
- Last Synced: 2025-12-25T22:34:20.392Z (7 months ago)
- Language: Kotlin
- Size: 78.9 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rover Campaigns Android SDK
## Rover Campaigns Android SDK 3.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 `dependencies` →
`repositories` block of your app-level `build.gradle`:
```groovy
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.
```groovy
dependencies {
// ...
implementation "io.rover.campaigns:core:3.10.0"
implementation "io.rover.campaigns:notifications:3.10.0"
implementation "io.rover.campaigns:location:3.10.0"
implementation "io.rover.campaigns:debug:3.10.0"
implementation "io.rover.campaigns:experiences:3.10.0"
}
```
Please continue onwards from https://github.com/RoverPlatform/rover-campaigns-android/wiki.