Skip to content

Install the SDK

Install SDK

Configure dependency

To begin development of an application with Navigation SDK, add the SDK as a dependency into the project.

Below is a sample configuration in the project build file. Replace the user name and password with the download credentials provided by Telenav.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
repositories {
    ...

    maven {
        url "https://telenav.jfrog.io/artifactory/telenav-maven-releases/"
        credentials {
            username '#REPO_USER_NAME#'
            password '#REPO_PASSWD#'
        }
    }
}

dependencies {
    implementation("com.telenav.sdk:telenav-android-drivesession:${version}")
    implementation("com.telenav.sdk:telenav-android-mapview:${version}")
}


Notes

Please refer to the Release Note to get the latest version.

SDK Requirement

SDK requires standard Android Platform Libary. Currently it supports Android 6 (API level > 23) and above.