mirror of
https://github.com/RoboSats/robosats.git
synced 2025-08-13 12:37:17 +00:00
22 lines
486 B
Plaintext
22 lines
486 B
Plaintext
pluginManagement {
|
|
repositories {
|
|
google ()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
maven("https://mvnrepository.com")
|
|
maven("https://jitpack.io")
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven("https://mvnrepository.com")
|
|
maven("https://jitpack.io")
|
|
}
|
|
}
|
|
|
|
rootProject.name = "Robosats"
|
|
include(":app")
|