Installation
Prerequisites
List necessary software and tools:
Android Studio
Installation Steps
Download the SDK
Download the latest version of the Noctua SDK from here.
Add the
.aar
file to your projectPlace the
.aar
file in thelibs
directory of your Android project.Copy the downloaded
noctua-sdk.aar
file to thelibs
directory of your Android project.Modify
build.gradle
files
In the project-level
build.gradle
file, add the following repository if it's not already included:
allprojects {
repositories {
...
flatDir {
dirs 'libs'
}
}
}
In the app-level
build.gradle
file, add the dependency:
dependencies {
implementation(name: 'noctua-sdk', ext: 'aar')
// Add other dependencies here
}
Last updated