Execution failed for JetifyTrans
2021-01-27 本文已影响0人
maiduoduo
错误信息:
error processing C:\Users\lenovo.gradle\caches\modules-2\files-2.1\com.goog
Execution failed for JetifyTransform: C:\Users\spide.gradle\caches\modules-2\files-2.1\com.jakewha
1.无法正常引入Gson
2.在使用ButterKnife的时候出现该错误,是因为build.gradle需要加入jdk1.8
compileOptions{
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
加入到android{}里面
再然后在配置文件里面加入
//加入butterknife的包
implementation 'com.jakewharton:butterknife:10.1.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:10.1.0'
image.png
加入进去后编译就好,如果不行的话
image.png
右键刷新-》接着build-》看一下错误找问题解决