I want to prevent anyone from apk 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!!

link|improve this question

0% accept rate
hi Matt Ellen ,i am so glad to get your help.just now, i have little time to ask this question.so i made many mistakes.thanks for your help.good luck – skalo Feb 11 '11 at 9:10
No worries. I only change things to try and get more people reading your question. – Matt Ellen Feb 11 '11 at 9:48
feedback

2 Answers

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.

link|improve this answer
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.