其他分享
首页 > 其他分享> > 打包时报错 app\build\intermediates\res\resources-xxx-stripped.ap_' specified for property '

打包时报错 app\build\intermediates\res\resources-xxx-stripped.ap_' specified for property '

作者:互联网

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

 

打包时报错显示: “ app\build\intermediates\res\resources-xxx-stripped.ap_' specified for property 'resourceFile' does not exist. ”

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

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

 需要处理2个参数:

minifyEnabled false
shrinkResources false

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


 

标签:混淆,intermediates,stripped,app,ap,res
来源: https://www.cnblogs.com/zhenxiangyue/p/11422208.html