Protect resource file
yo I would like to know something about the resource file in the project there is something to protect it (obfuscation etc...) against decompilation or you have to code yourself ?
3 Replies
obfuscation is the maximum ya can do
as long as the application can read handle the resource data its basically also giving away the way how to read it
u can only make it harder
Don't even try. Assume anything you put in that file will be visible to anyone using your program.
If you need to keep something secure the only way is to host it on a server you control and have your program make calls to that server.
ok thank guys