Proguard/Dexguard dontobfuscate Specific image folder in React Native

552 Views Asked by At

I have a react native application in which I am using Dexguard. When I do the release build of the application none of the images is loading. I have the images kept in this folder

ProjectRoot > src>assets>images

I have my android code in this folder,

ProjectRoot > android > app>

Looks like Dexguard is obfuscating the images folder, how do I tell dexguard not to do it, I tried adding,

-keepresourcefiles images/**

and

-keepresourcefiles src/assets/images/**

but this has no effect. how to do it properly?

1

There are 1 best solutions below

0
On

Not a restrictive rule, but this works for me:

-keepresourcefiles res/**
-keepresources **