I added a custom maven repository to build.gradle in Android Studio but the dependency is not being found
Maven repository and dependency
You have to add repositories to your build file. For maven repositories you have to prefix repository name with maven{}
repositories
maven{}
repositories { maven { url "http://maven.springframework.org/release" } maven { url "http://maven.restlet.org" } mavenCentral() }