settings.gradle 769 B

123456789101112131415161718192021222324
  1. pluginManagement {
  2. repositories {
  3. maven { url 'https://maven.aliyun.com/repository/central' }
  4. maven { url 'https://maven.aliyun.com/repository/public' }
  5. maven { url 'https://maven.aliyun.com/repository/google' }
  6. google()
  7. mavenCentral()
  8. gradlePluginPortal()
  9. }
  10. }
  11. dependencyResolutionManagement {
  12. repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
  13. repositories {
  14. maven { url 'https://maven.aliyun.com/repository/central' }
  15. maven { url 'https://maven.aliyun.com/repository/public' }
  16. maven { url 'https://maven.aliyun.com/repository/google' }
  17. google()
  18. mavenCentral()
  19. maven { url 'https://jitpack.io' }
  20. }
  21. }
  22. rootProject.name = "PSBC"
  23. include ':app'