Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an Android project that I recently published to the market after running it through obfuscation with ProGuard.

The project exported without any complications, but how do I know it's been obfuscated? Is there anything I could do to verify that obfuscation was successful?

share|improve this question

2 Answers

up vote 2 down vote accepted

Try to reverse engineer your own application. See what you can read in the code.

Use the following questions:

decompiling DEX into Java sourcecode

http://www.taranfx.com/decompile-reverse-engineer-android-apk

share|improve this answer
Thank you for this. I de-compiled two different apps, one that I obfuscated and another that I didn't obfuscate. The code from both apps (non-obfuscated and obfuscated) look the same. Variable names have been changed, but class names and whatnot remain the same. Is this how obfuscation works? How come the project that I didn't obfuscate has changes in variable names? – dell116 Aug 23 '11 at 0:25
That depends on how you setup proguard to work... but I don't have much experience with that! – Pedro Loureiro Aug 23 '11 at 11:39

Look for dump.txt, mapping.txt, seeds.txt and usage.txt. They will probably be in a proguard folder at your project directory. These are created when ProGuard is run on your code.

These are filled with information about the obfuscation, especially useful is mapping.txt which shows what ProGuard turned your various member names in to.

share|improve this answer
I have a ProGuard folder in the project directory, but it's got zilch inside of it....nothing there....am I to assume that ProGuard didn't obfuscate my code properly? Could these files be in any other directory? – dell116 Aug 22 '11 at 20:27
Is there any proguard folder under your project anywhere? If not, I'd say it probably didn't run correctly. – Jake Basile Aug 22 '11 at 21:41
Yes..proguard folder is there...but is has no contents....I couldn't find any of the files you mentioned anywhere on my hard drive...so something must have broke when I ran it through proguard....uht oh.... – dell116 Aug 22 '11 at 22:58
You can unpublish your app until you can get obfuscation working correctly, but it's up to you to decide if that will help. – Jake Basile Aug 23 '11 at 0:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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