skylot

Results 163 comments of skylot

@jpstotz you can use `--cfg` option to save methods graph to dot files. Next you need to open it using one of [gui apps](https://graphviz.org/resources/#editor-plugins) (I use simple [xdot.py](https://github.com/jrfonseca/xdot.py)) or convert...

@AIRTEspresso right now, jadx is not very smart about resolving and checking overloaded method usage. In your sample there is no method with exact signature (`(int[][][], int)`) so we need...

> I have many other buggy reports in different conditions. There are nearly infinite number of possible issues, so please report only most common ones using different issues.

@BitTheByte agree. I definitely will implement some sort of caller/usage tree visualization. Not sure about actual taint analysis because it is harder to implement and to be really helpful need...

Sure! Looks like I totally forgot about #1085, it already has that mapping :rofl: And for `Save source` I want to set shortcut to CTRL + E after merging it...

@Mino260806 as discussed in #1412 downgrading ADB to previous version may help. @jpstotz, @RebootSTR can anyone post a version of ADB which still work and/or which version don't work? So...

> connecting to the debugger via adb seems to be an exclusive operation @jpstotz thanks for that research! [Debugger wiki](https://github.com/skylot/jadx/wiki/Smali-debugger) page already has that notice, so maybe we also need...

@kschoos your request is very similar to #66, and it is hard to match methods with everything renamed and also modified by java compiler and d8/r8 tool. Anyway, I may...

@kschoos you want to implement that feature? Great! :) Unfortunately, there is no ready to use plugin api, so options are: 1. Fill renames list from [JadxCodeData](https://github.com/skylot/jadx/blob/dfdc14ea8618a7242d04bd6ea066d3e6b60a10b9/jadx-core/src/main/java/jadx/api/data/impl/JadxCodeData.java#L12=) same as [RenameDialog](https://github.com/skylot/jadx/blob/83decc24731dd5883cc8cd34e50e078c9244de61/jadx-gui/src/main/java/jadx/gui/ui/dialog/RenameDialog.java#L64)...

> Is there any plan for the "bookmark function" Well, yes, but I think the "comment feature" works very similar for now, i.e. you can leave comment in code and...