mobile-ssh-manager/settings.gradle.kts

26 lines
681 B
Kotlin

pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
// Termux terminal-emulator is published here (Maven Central copy is outdated).
maven { url = uri("https://jitpack.io") }
}
}
rootProject.name = "Mobile SSH Manager"
include(":app")