You should add this in your App Level
build.gradle section.
Finally
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}
Then Clean-Rebuild
and Run
.
FYI
If you're using a version of Gradle higher than 4.1
, you must use :
allprojects {
repositories {
google()
}
}