mirror of
https://github.com/Quad4-Software/MeshChatX.git
synced 2026-08-18 09:49:09 -04:00
23 lines
548 B
Groovy
23 lines
548 B
Groovy
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
maven { url "https://chaquo.com/maven" }
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { url "https://chaquo.com/maven" }
|
|
// usb-serial-for-android (com.github.mik3y) is published via JitPack
|
|
maven { url "https://jitpack.io" }
|
|
}
|
|
}
|
|
|
|
rootProject.name = "MeshChatX"
|
|
include ':app'
|
|
|