- 点开toggle view 查看详细
Could not determine the dependencies of task ':app:lintVitalRelease'.
Could not resolve all task dependencies for configuration ':app:lintClassPath'.
Could not resolve org.codehaus.groovy:groovy-all:2.4.12.
Required by:
project :app > com.android.tools.lint:lint-gradle:26.2.0
Could not resolve org.codehaus.groovy:groovy-all:2.4.12.
Could not get resource 'http://maven.aliyun.com/nexus/content/repositories/jcenter/org/codehaus/groovy/groovy-all/2.4.12/groovy-all-2.4.12.pom'.
在app>build.gradle加入此代码
android{
lintOptions {
checkReleaseBuilds false
abortOnError false
}
}
网友评论