Android Installation

Technical Requirements

const Technical_Requirements = {
    STUDIO_VERSION: '3.3.2+',
    ANDROID_VERSION: '5.0+ (API 21+)'
};

Installation Methods

The Wunderkind SDK can be installed via Maven or direct installation.

Maven

The Android WSDK is hosted on Google Platform Artifact Registry.

Navigate to app level build.gradle and add these lines in the corresponding sections:

android {
    repositories {
        maven {
            url "https://us-central1-maven.pkg.dev/wk-production-sdk/wunderkind-android-sdk-production"
        }
    }
}

dependencies {
    implementation "co.wunderkind.sdk:wunderkindsdk:3.0.0"
}

Direct Installation

  1. Navigate to project's app module and create libs directory.
  2. Place your .aar (e.g. wunderkindsdk.aar) file in this directory.
  3. In order to define a new repository which points to the app module's libs folder, please include the code below to the android block of app level's build.gradle file:
android {
    repositories {
        flatDir {
            dirs 'libs'
        }
    }
}

dependencies {
    compile(name: 'wunderkindsdk', ext: 'aar')
}