MuiscPlayerForSubsonic/settings.gradle
2023-02-18 18:28:17 +08:00

19 lines
425 B
Groovy

pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven { url 'https://jitpack.io' }
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
rootProject.name = "MusicPlayerForSubsonic"
include ':app'