testing-samples icon indicating copy to clipboard operation
testing-samples copied to clipboard

Could not find lint-gradle-api.jar

Open mrk-han opened this issue 7 years ago • 1 comments

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()
    }
}

mrk-han avatar Nov 12 '18 16:11 mrk-han

fixed the issue 👍

anbarasu-seven avatar Nov 20 '18 11:11 anbarasu-seven