The Wayback Machine - https://web.archive.org/web/20200603224341/https://github.com/topics/dalvik
Skip to content
#

dalvik

Here are 40 public repositories matching this topic...

reox
reox commented Oct 23, 2019

Does anyone uses the AST feature of thje decompiler, i.e. this one:

from pprint import pprint
from androguard.decompiler.dad.decompile import DvMethod
for method in dx.get_methods():
    if method.is_external():
        continue
    dv = DvMethod(method)
    dv.process(doAST=True)
    pprint(dv.get_ast())

I would really like to see a usecase for this and some code how it is ac

Improve this page

Add a description, image, and links to the dalvik topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the dalvik topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.