anestisb / vdexExtractor

Tool to decompile & extract Android Dex bytecode from Vdex files
Apache License 2.0
1k stars 215 forks source link

about debug info in the dex file #46

Closed qianjie1990 closed 5 years ago

qianjie1990 commented 5 years ago

Is there any option not to include the '.line/.params/..' when deodex. now,it is below after use apktool:

.method public constructor (Landroid/content/Context;)V .locals 5

.param p1, "context"    # Landroid/content/Context;

.line 72

invoke-direct {p0}, Landroid/content/BroadcastReceiver;-><init>()V
anestisb commented 5 years ago

@qianjie1990 no. The tool does not attempt to modify the Dex debug information. I don't see a reason to add such a functionality in the tool. Apart from a minor size increase, debug information is irrelevant to the processes implemented by this tool.

qianjie1990 commented 5 years ago

thanks a lot .It's caused by the apktool.