Pro Native中的Proguard / Dexguard dontobfuscate特定图像文件夹

问题描述

我有一个我正在使用dexguard的React本机应用程序。当我执行应用程序的发布版本时,没有图像在加载。我将图像保存在此文件夹中

ProjectRoot> src> assets>图像

我在此文件夹中有我的android代码

ProjectRoot> android> app>

好像dexguard混淆了images文件夹,我如何告诉dexguard不要这样做, 我尝试添加

-keepresourcefiles images/**

-keepresourcefiles src/assets/images/**

但这无效。怎么做呢?

解决方法

不是限制性规则,但这对我有用:

-keepresourcefiles res/**
-keepresources **