Android

circle-info

アカウント作成がまだの方は、最初に下記を参考の上、作成をお願いします。

https://docs.nativebrik.com/start/quickstart/accountarrow-up-right

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:

build.gradle
dependencies {
  implementation 'com.nativebrik:sdk:0.2.1'
}

or if you are using Kotlin DSL:

build.gradle.kts
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