Today, Android Studio stopped to sync properly due to configuration issues.
Could not resolve all files for configuration ‘:app:providerRepositoryDebu
Fixed by changing order of repos in PROJECT build.grade:
Instead of
allprojects {
repositories {
jcenter()
maven { url "https://maven.google.com" }
}
}
put
allprojects {
repositories {
maven { url "https://maven.google.com" }
jcenter()
}
}
I think someone suggested this but I don't see his answer anymore.
Very strange issue.