- AS2.2打包时 Error:A problem was fou
- 打包失败Error:A problem was found wi
- ERROR ITMS-90158: "The following
- Error:A problem was found with t
- 解决方法:hyperledger fabric实例化智能合约找不
- androidstudio出现红色J问题汇总
- Linux下部署 ant-design-pro 大小写敏感问题:
- error: There was a problem with
- centos6系统yum安装报错The requested UR
- iOS 上架报错ERROR ITMS-90032 "I
错误说明:
AS 2.2后我们打包时会遇到下面这问题
<code>
Error:A problem was found with the configuration of task ':app:packageserviceRelease'.
File 'D:\work*\app\build\intermediates\res\resources-**-stripped.ap_' specified for property 'resourceFile' does not exist.
</code>

解决方案:
去掉release中的shrinkResources字段

解释:
AS 2.2后minifyEnabled=true时包含了shrinkResources=true,即混淆时会自动去掉多余资源,所以我们不需要设置shrinkResources了。
网友评论