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

版权声明:本文为程序园中猿原创文章,转载请注明出处 https://blog.csdn.net/yinxing2008/article/details/84746621

报错:

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

猜你喜欢

转载自blog.csdn.net/yinxing2008/article/details/84746621