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.1.1"
}Direct Installation
- Navigate to project's 
appmodule and createlibsdirectory. - Place your 
.aar(e.g.wunderkindsdk.aar) file in this directory. - In order to define a new repository which points to the 
appmodule'slibsfolder, please include the code below to theandroidblock of app level'sbuild.gradlefile: 
android {
    repositories {
        flatDir {
            dirs 'libs'
        }
    }
}
dependencies {
    compile(name: 'wunderkindsdk', ext: 'aar')
}Updated 5 days ago