zl程序教程

您现在的位置是:首页 >  移动开发

当前栏目

Android Studio编译失败:Could not get unknown property 'packageForR' for task ':app:processDebugResources

AndroidAppStudio for not 编译 失败 get
2023-09-27 14:27:30 时间

报错:

Could not get unknown property 'packageForR' for task ':app:processDebugResources'

解决方案:

删除build.gradle文件中的如下信息:

apply plugin: 'com.jakewharton.butterknife'

保留如下依赖配置:

// butterknife
implementation 'com.jakewharton:butterknife:8.8.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'

 

安卓开发技术分享:https://blog.csdn.net/yinxing2008/article/details/84555061