mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
29 lines
No EOL
980 B
Groovy
29 lines
No EOL
980 B
Groovy
include ':app'
|
|
rootProject.name = 'Mesh Util'
|
|
|
|
include ':geeksville-androidlib'
|
|
project(':geeksville-androidlib').projectDir = new File('geeksville-androidlib')
|
|
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
// jcenter() // Warning: this repository is going to shut down soon
|
|
maven {
|
|
url 'https://api.mapbox.com/downloads/v2/releases/maven'
|
|
authentication {
|
|
basic(BasicAuthentication)
|
|
}
|
|
credentials {
|
|
// Do not change the username below.
|
|
// This should always be `mapbox` (not your username).
|
|
username = "mapbox"
|
|
// Use the secret token you stored in gradle.properties as the password
|
|
password = System.properties["MAPBOX_DOWNLOADS_TOKEN"]
|
|
}
|
|
}
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
} |