The Marigold SDK for Android is a drop in library that allows the Marigold mobile platform to integrate with your Android apps.
The integration process usually only takes a few minutes.
This project contains the Marigold library, as well as an example project that you can use to quickly see some of the features of the SDK.
Detailed integration steps can be found in the official documentation.
Javadoc for the latest version of the SDK can be found here. KDoc for the latest version of the SDK can be found here.
If you are using the Marigold SDK in your Android Studio Project, the SDK can be simply imported with Gradle
Gradle example:
repositories {
maven {
url "https://github.com/sailthru/maven-repository/raw/master/"
}
}
dependencies {
...
implementation 'com.marigold.sdk:marigold:20.+'
}
Kotlin DSL example:
repositories {
maven {
url = uri("https://github.com/sailthru/maven-repository/raw/master/")
}
}
dependencies {
implementation("com.marigold.sdk:marigold:20.+")
}