I had the same problem. Solved by adding url for missing repository in the build.gradle file:
android {
[...]
repositories {
maven { url 'https://repo1.maven.org/maven2' }
}
[...]
}
That’s it.
I had the same problem. Solved by adding url for missing repository in the build.gradle file:
android {
[...]
repositories {
maven { url 'https://repo1.maven.org/maven2' }
}
[...]
}
That’s it.