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 Nubrick SDK to your app

Nubrick 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 'io.nubrick:nubrick:0.9.1'
}

or if you are using Kotlin DSL:

build.gradle.kts
dependencies {
  implementation("io.nubrick:nubrick:0.9.1")
}

Apache Maven

Add the following to your pom.xml file:

Step 2. Initialize Nubrick SDK in your app

Last updated