Android
System Requirements
minimum Android API level: 26 or higher
minimum Kotlin version: 1.9.10 or higher
Step 1. Install Nativebrik SDK to your app
Nativebrik SDK is available through Maven Central. Therefore, you can install it by several ways:
With Gradle
With Apache Maven
Gradle
Add the following to your build.gradle file:
dependencies {
implementation 'com.nativebrik:sdk:0.2.1'
}or if you are using Kotlin DSL:
dependencies {
implementation("com.nativebrik:sdk:0.2.1")
}Apache Maven
Add the following to your pom.xml file:
Step 2. Initialize Nativebrik SDK in your app
Last updated