-
Notifications
You must be signed in to change notification settings - Fork 2
Installing
Michał Gasztold edited this page Oct 27, 2022
·
18 revisions
- 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)
}
}
}
- then add the following dependency:
dependencies {
compile('com.ubudu.indoorlocation:ubudu-indoor-location-sdk:3.0.18@aar') {
transitive = true
}
// …
}