Skip to content

GoMarketMe/gomarketme-kotlin

Repository files navigation

GoMarketMe

GoMarketMe Kotlin

Affiliate Marketing for Android Applications.



📦 Setup

  1. Add the following to your build.gradle.kts file:
repositories {
    mavenCentral()
	maven(url = "https://jitpack.io")
}

dependencies {
    implementation("com.github.GoMarketMe:gomarketme-kotlin:1.0.4")
}

🧑‍💻 Usage

⚡️ Initialize Client

Create an instance of GoMarketMe client:

override fun onCreate() {
    super.onCreate()    
    GoMarketMe.initialize(this, "API_KEY")
}

Make sure to replace API_KEY with your actual GoMarketMe API key. You can find it on the product onboarding page and under Profile > API Key.

Check out our sample app for an example.