Failed to transform file 'android.jar' to match attributes

运行一项目,突然遇到错误,明明之前还好好的,为什么突然就报错了。错误如下:

Could not resolve all files for configuration ':app:androidApis'.

Failed to transform file 'android.jar' to match attributes {artifactType=android-mockable-jar, returnDefaultValues=false} using transform MockableJarTransform

然后突然想起打开项目时,弹出让Gradle Plugin升级的窗口,点击了updata,就出现了这个错误。

Failed to transform file 'android.jar' to match attributes_第1张图片

只需要在build.gradle(project)中将3.2.1修改为3.1.X(X看你之前的版本是多少)就可以了.

dependencies {
    classpath 'com.android.tools.build:gradle:3.1.3'
}

 

你可能感兴趣的:(android)