简体   繁体   中英

Hide res folder in apk reverse engineering

I want to restrict my app from reverse engineering.

Using progaurd hides only source code

But not res folder: drawable folder, layout folder, color, strings all are visible

When i am trying to check from online tools like apk editor i can see my res folder

Please help me how to hide res folder

thank you

There is no way you can hide the res folder in final apk. Even if you manage to do it by some encryption, it will be highly discourage since it will have severe performance impact.

res folder shouldn't have any sensitive data which needs such protection. If your intention is to have some sensitive data, then put it in assets folder and use tools like dexguard to encrypt it.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM