Skip to content

Installing

Michał Gasztold edited this page Oct 27, 2022 · 18 revisions

Android Studio

  1. add the Ubudu nexus repository url to your build.gradle file. Ask Ubudu customer success team for username and password that allows to fetch Android SDKs from out Maven repository.
    repositories {
        maven {
            credentials  {
                username = "${mavenUser}"
                password = "${mavenPassword}"
            }
            url 'https://nexus.ubudu.com/repository/maven-releases/'
            authentication {                            // I was missing this authentication section and that's why read timeout
                basic(BasicAuthentication)
            }
        }
    }
  1. then add the following dependency:
    dependencies {
        compile('com.ubudu.indoorlocation:ubudu-indoor-location-sdk:3.0.18@aar') {
            transitive = true
        }
        // …
    }

Clone this wiki locally