You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
wget https://github.com/latenssi/csawctf13/raw/master/herpderperp/herpderper.apk
from androguard.misc import AnalyzeAPK
apk, dalvik_vm_format, analysis = AnalyzeAPK("herpderper.apk") # I think AnalyzeAPK can take decompiler arg
dalvik_vm_format.get_class('Lcom/path/to/class;').source() # decompile
for class in dalvik_vm_format.get_classes():
class.source() # decompile
The text was updated successfully, but these errors were encountered:
https://github.com/androguard/androguard/blob/master/tests/test_decompiler.py
The text was updated successfully, but these errors were encountered: