Adding a Repository

1

In the “settings.gradle.kts” file, add the Nexus repository so that you can download the SDK dependency (TTP)

2

Add the code snippet below inside the dependencyResolutionManagement block in the settings.gradle.kts file.

  maven {
            name = "Nexus"
            url = uri("https://nexus.first-tech.net/repository/taponphone-dock/")
            credentials {
                       username = "XXXXXXXXXXXXX"
                       password = "YYYYYYYYYYYYY"
            }
        }
3

After adding the code, the settings.gradle.kts file will look like this

Last updated