Loading...
Searching...
No Matches
Android Installation Guide

Installation with Jitpack

JitPack is a novel package repository for JVM and Android projects. It builds Git projects on demand and provides you with ready-to-use artifacts (jar, aar)

Step 1

Add the JitPack repository to your build file

repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}

Step 2

1) Get latest Tag

2) Add the dependency with Tag

dependencies {
implementation 'com.github.Navigine:Indoor-Navigation-Android-Mobile-SDK-2.0:Tag'
}

Manual installation

1) Download libnavigine.aar

2) In your project choose File -> New -> New module -> Import .JAR/.AAR Package;

3) Select downloaded libnavigine.aar file and add it to your project as new module;

4) Add following lines inside dependencies module in your apps build.gradle file:

dependencies {
implementation project(":libnavigine")
}