Gradle failed to resolve com.google.android.gms:play-services OR com.android.support:appcompat-v7:26.0.0
Add
maven { url "https://maven.google.com" }
to list of repositories in project level build.gradle asallprojects {
repositories {
jcenter()
maven { url "https://maven.google.com" }
}
}
Comments
Post a Comment