skylot / jadx

Dex to Java decompiler
Apache License 2.0
41.81k stars 4.88k forks source link

[feature] improve searching performance #1820

Closed dvdface closed 1 year ago

dvdface commented 1 year ago

Describe your idea: When RE a big app, such as WeChat, searching string in codes takes long time, could you speed it up by some indexing tech?

skylot commented 1 year ago

@dvdface before search jadx needs to decompile whole app and this is a most consuming part, but after decompilation is finished search should be fast. In latest unstable build Tools/Decompile all classes button was added, use it to run full decomplation, so next searches will be much faster.

dvdface commented 1 year ago

@dvdface before search jadx needs to decompile whole app and this is a most consuming part, but after decompilation is finished search should be fast. In latest unstable build Tools/Decompile all classes button was added, use it to run full decomplation, so next searches will be much faster.

Thanks for reply, I will try it .