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
- Navigate to project's
app
module and createlibs
directory. - Place your
.aar
(e.g.wunderkindsdk.aar
) file in this directory. - In order to define a new repository which points to the
app
module'slibs
folder, please include the code below to theandroid
block of app level'sbuild.gradle
file:
android {
repositories {
flatDir {
dirs 'libs'
}
}
}
dependencies {
compile(name: 'wunderkindsdk', ext: 'aar')
}
Updated about 1 month ago