AS2.2打包时 Error:A problem was fou
2016-11-02 本文已影响70人
Zach_C
错误说明:
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了。