testing-samples
testing-samples copied to clipboard
Could not find lint-gradle-api.jar
I was receiving an error when importing the repo.
Caused by: org.gradle.internal.resolve.ArtifactNotFoundException: Could not find lint-gradle-api.jar
It was fixed by swapping google() to be above jcenter() in the buildscript.
buildscript {
repositories {
google()
jcenter()
}
}
fixed the issue 👍