打包时报错 appuildintermediates es esources-xxx-stripped.ap_' specified for property 'res

参考文献:https://blog.csdn.net/qq_30552993/article/details/74008825

打包时报错显示: “ appuildintermediates es esources-xxx-stripped.ap_' specified for property 'resourceFile' does not exist. ”

为了能够捕捉到异常, 项目需要暂时关闭混淆功能

由于关闭的内容不彻底,导致报上面的错误,如何正确的关闭混淆功能?

 需要处理2个参数:

minifyEnabled false
shrinkResources false

minifyEnabled 是否混淆,shrinkResources 是否移除无用的resource文件
不用混淆的话写下面两句,或者直接去掉这两句


原文地址:https://www.cnblogs.com/zhenxiangyue/p/11422208.html