无法使用shrinkResources:为属性'resourceFile'指定的res/resources-prod-release-stripped.ap_'不存在

Gab*_*rin 0 android android-studio

我正在尝试使用shrinkResources功能.

我正在使用JackCompilerJAVA_1_8编译名为"prod"的风格的发行版本.这种风格仅用于在使用"dev"风味时利用更好的编译时间minSdk 21.没有"特定风味"的资源.它们都在唯一的公共res文件夹中.

运行编译时,我收到以下错误.

:app:packageProdRelease FAILED

FAILURE: Build failed with an exception.

* What went wrong: A problem was found with the configuration of task ':app:packageProdRelease'.
File '/app/build/intermediates/res/resources-prod-release-stripped.ap_' specified for property 'resourceFile' does not exist.
Run Code Online (Sandbox Code Playgroud)

woj*_*ski 9

要使shrinkResources工作,您还必须设置

minifyEnabled true
Run Code Online (Sandbox Code Playgroud)

资源缩减需要使用未使用的代码删除步骤,否则会出现错误.

它在文档中说明:https://developer.android.com/studio/build/shrink-code.html#shrink-resources