System requirement
Android Studio 4.0 or above with minimum support Android 6.0 or above (API level 23)
How to Get started
- Create a sample project from Android Studio
- Add
maven { ... }
into project repositories insidebuild.gradle
repositories {
maven {
url "https://dl.cloudsmith.io/public/indooratlas/mvn-public/maven/"
}
}
- Add
implementation 'com.indooratlas.android:groundsage-android-sdk:1.0.1'
to appbuild.gradle
Please check the latest version from here
- Request permission
Manifest.permission.ACCESS_FINE_LOCATION
from the app. For more information, please read android permission - Before starting the App, please must add both API key and secret key. For more information, please see examples.
If you are using java for development :
- Please include
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
to yourbuild.gradle
- And make sure you are enabled Java 8 language features by add following to
build.gradle
android { ... // Configure only for each module that uses Java 8 // language features (either in its source code or // through dependencies). compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } }