add maven repository to build.gradle

后端 未结 5 1883
独厮守ぢ
独厮守ぢ 2020-11-30 19:30

I added a custom maven repository to build.gradle in Android Studio but the dependency is not being found

Maven repository and dependency



        
5条回答
  •  感情败类
    2020-11-30 20:03

    You have to add repositories to your build file. For maven repositories you have to prefix repository name with maven{}

    repositories {
      maven { url "http://maven.springframework.org/release" }
      maven { url "http://maven.restlet.org" }
      mavenCentral()
    }
    

提交回复
热议问题