How to download the SDK

Download from Repository

The SportsTalk SDK is published on Maven Central. In order to use it in your application, just do the following:

// 1. Add the following in root  **build.gradle** file, repositories section
allprojects {
    repositories {
        // ...
        mavenCentral()
        maven {
            url "https://s01.oss.sonatype.org/content/repositories/snapshots/"
        }
        // ...
    }
}

// 2. Add the following lines in your module **build.gradle** file, under dependencies section
implementation 'io.github.sportstalk247.sdk-multiplatform:core:X.Y.Z'

Maven Central

Then sync again. The gradle build should now be successful.