android studio编译报错Could not find property 'processResources'

来源:互联网 发布:mac 怎么安装软件 编辑:程序博客网 时间:2024/06/05 11:12

android studio编译报错:

Error:(xx, x) Could not find property 'processResources' on com.android.build.gradle.internal.api.ApplicationVariantImpl_Decorated@xxxxxxx.

解决方法:
将app下的build.gradle文件中找到错误信息中Error:(xx, x)的xx行

androidManifestFile variant.processResources.manifestFile

修改为

androidManifestFile variant.outputs[0].processResources.manifestFile
0 0