I am trying to get location and update to server in my Android app.
This is my Gradle code, here I included compile \'com.google.android.gms:play-services:11.2.0\'
Try update version new of google play service
In build.gradle
file:
repositories {
maven {
url "https://maven.google.com"
}
}
Same problem and more solution here
Error:(39, 13) Failed to resolve: com.android.support:appcompat-v7:26.0.0
Add this to your project-level build.gradle
file:
repositories {
maven {
url "https://maven.google.com"
}
}