如何新增儲存庫

要下載依賴項,請宣告儲存庫,以便 Gradle 可以找到它們。為此,請將 repositories { ... } 新增到頂級檔案中的 app / module 的 build.gradle

repositories {
  // Gradle's Java plugin allows the addition of these two repositories via method calls:
  jcenter()
  mavenCentral()

  maven { url "http://repository.of/dependency" }

  maven { 
      credentials {
          username 'xxx'
          password 'xxx'
      }

  url 'http://my.maven
  }
}