Installation

Prerequisites

List necessary software and tools:

  • Android Studio

Installation Steps

  1. Download the SDK

    Download the latest version of the Noctua SDK from here.

  2. Add the .aar file to your project

    Place the .aar file in the libs directory of your Android project.

    Copy the downloaded noctua-sdk.aar file to the libs directory of your Android project.

  3. 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