Tried to reverse engineer my app, but got some weird-looking file tree

北城以北 提交于 2019-12-04 21:39:58

The Android SDK includes Proguard to obfuscate your code. Proguard is enabled by default when you create an Android project in Eclipse using ADT. You can turn it off however. Read more about this here http://developer.android.com/guide/developing/tools/proguard.html

So...

Q: Could anyone tell me what could be the reason for this?

It's Proguard doing its job.

Q: Has Eclipse somehow obfuscated the code before compiling it into APK? Is this how the obfuscated APK looks like after being put through IR process?

It's not Eclipse by itself, it's Proguard that is called in the building process. And yes, that is how it looks like.

Just use JAD. to decompile it properly.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!