开发者

About compiler and decompilation

开发者 https://www.devze.com 2023-02-10 02:16 出处:网络
I want to prevent anyone from ap开发者_运维问答k reverse compilation. We need to do something. I browsed on the internet, but I still don\'t know the operational steps clearly.

I want to prevent anyone from ap开发者_运维问答k reverse compilation. We need to do something. I browsed on the internet, but I still don't know the operational steps clearly.

Who can tell me how to do it?

Anyone's help is so welcome!! Thanks!!


You need an obfuscator. If you are running .NET or Java, these should be easy to find.

There is nothing to prevent people from decompiling your code. All you can do is make it as nasty to read as possible. Don't do this in source (as you will not be able to modify your code yourself), use an obfuscator to do it as a post build step.


Google recommends ProGuard. See this link in the Android docs for more information.

It won't prevent people from disassembling your code (you won't be able to stop that - after all, the operating system needs to disassemble your code to execute it!), but it will make it very hard to see what's going on.

0

精彩评论

暂无评论...
验证码 换一张
取 消