Skip to content

Quickstart Android

The Android version of the library is made available as a Maven package.

Installation

Add the Mobai maven repository to the project level build.gradle file

1
2
3
4
5
6
7
8
// build.gradle (Project)
allprojects {
    repositories {
        maven {
            url 'https://mobaibio.jfrog.io/artifactory/mobai-android-release/'
        }
    }
}

Add the Mobai Core library as a dependency in the module level build.gradle file

1
2
3
4
// build.gradle (Module)
dependencies {
    implementation 'bio.mobai:core:1.0.0'
}