Skip to content

sailthru/sailthru-mobile-android-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 

Repository files navigation

Marigold SDK for Android

Overview

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.

Integration

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.

Android Studio

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.+")
}