dalvik
Here are 40 public repositories matching this topic...
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
-
Updated
Jun 2, 2020 - C++
-
Updated
Mar 1, 2020 - Python
-
Updated
Mar 19, 2019 - Ruby
-
Updated
Sep 28, 2019 - Java
-
Updated
May 28, 2020
The Dex module presents a leaky API to the user: lots of record cells are mutable, which ends up being problematic when inserting items because there are necessarily implicit invariants. For example, the tries_size field has to be in sync with the length of tries. The API should be carefully redesigned so that this is more intuitive.
-
Updated
Jun 3, 2020 - Python
-
Updated
May 16, 2020 - Nim
-
Updated
May 13, 2020 - C++
-
Updated
Apr 29, 2018 - C++
-
Updated
Sep 27, 2019 - C
-
Updated
Mar 1, 2017 - C++
-
Updated
Jun 2, 2020 - TypeScript
-
Updated
Feb 14, 2017 - Python
-
Updated
Dec 6, 2017 - TeX
-
Updated
Aug 25, 2019 - Java
-
Updated
Jan 10, 2020 - C#
Improve this page
Add a description, image, and links to the dalvik topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the dalvik topic, visit your repo's landing page and select "manage topics."


Right now the process isn't documented and is done by calling different classes in the project. Make a gradle task and document it a bit to make it easier for people to update it themselves.
Related discussion: CalebFenton/simplify#57