问题描述
我有一个我正在使用dexguard的React本机应用程序。当我执行应用程序的发布版本时,没有图像在加载。我将图像保存在此文件夹中
ProjectRoot> src> assets>图像
ProjectRoot> android> app>
好像dexguard混淆了images文件夹,我如何告诉dexguard不要这样做, 我尝试添加,
-keepresourcefiles images/**
和
-keepresourcefiles src/assets/images/**
但这无效。怎么做呢?
解决方法
不是限制性规则,但这对我有用:
-keepresourcefiles res/**
-keepresources **