5

Provide me the steps to obfuscate an Android application from Eclipse IDE. Is Proguard.jar best for this obfuscation purpose or do we have better obfuscator?

3
  • Why do you want to obfuscate your application? Compiling into source code will essentially do just that by making your application bytecode. Commented Sep 28, 2010 at 13:38
  • @Chris: code.google.com/p/smali Commented Sep 28, 2010 at 14:21
  • @Christopher: can you explain? I do not understand how obfuscating the code would help ? Commented Sep 28, 2010 at 14:57

1 Answer 1

9

Just in the last couple days, they've given instructions on how to do this in the Android Developers Blog

Sign up to request clarification or add additional context in comments.

1 Comment

And yes, the benefits of it reach far beyond the size stuff that's being mentioned. It will make your decompiled bytecode more difficult to reverse engineer. Certainly not impossible, but it will replace your descriptively-named variables and functions with meaningless strings.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.