Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Decompling an android apk? [duplicate]

Tags:

Possible Duplicate:
Android: Getting source code from an APK file

Is it possible for someone to de-compile my android apk file and see the public variables or constants declared in my packages?

My shared key that i have defined as public static constant will then get exposed...

like image 485
orak Avatar asked Sep 04 '12 08:09

orak


1 Answers

Yes it is possible to decompile an apk .

Depending on obfuscation level it might take some time but a dedicated/bent person will eventually decompile it .

You can try tools like

  • apktool

  • Smali

  • Show Java Android App

Source : http://geeknizer.com/decompile-reverse-engineer-android-apk/

UPDATE 1

Here are 2 more options for you:

  • decompileandroid.com

  • javadecompilers.com/apk

suggested by @AndrewRukin

UPDATE 2

Another tool : jadx

like image 190
Sunny Kumar Aditya Avatar answered Oct 06 '22 05:10

Sunny Kumar Aditya