MuiscPlayerForSubsonic/settings.gradle

19 lines
425 B
Groovy
Raw Permalink Normal View History

2023-02-18 11:27:35 +08:00
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
2023-02-18 18:28:17 +08:00
maven { url 'https://jitpack.io' }
2023-02-18 11:27:35 +08:00
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
2023-02-18 18:28:17 +08:00
maven { url 'https://jitpack.io' }
2023-02-18 11:27:35 +08:00
}
}
rootProject.name = "MusicPlayerForSubsonic"
include ':app'