Reputation: 13
Upvotes: 1
Views: 1949
Reputation: 13629
In your project build.gradle file:
buildscript {
repositories {
google() // add this
jcenter()
}
}
allprojects {
repositories {
google() // add this
jcenter()
}
}
Upvotes: 2