Meshtastic-Android/settings.gradle

29 lines
980 B
Groovy
Raw Normal View History

2020-01-20 15:53:22 -08:00
include ':app'
2022-02-04 21:58:00 -05:00
rootProject.name = 'Mesh Util'
2020-01-21 20:32:19 -08:00
include ':geeksville-androidlib'
project(':geeksville-androidlib').projectDir = new File('geeksville-androidlib')
2022-02-04 21:58:00 -05:00
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' }
}
}