Replies: 3 comments 3 replies
-
Usually such a behavior indicates that Java is running out of RAM. Which means the total amount of RAM in your system is too low or the project to be decompiled is too large, or both. How much RAM do you have and what OS and java version do you use? The high CPU usage is caused by the Java garbage collector which tries to squeeze out the last bytes of heap memory and for doing so it reorganizes the whole heap (full garbage cycle). This requires moving next to every object in memory around and as Jadx uses a high number of small objects all CPU cores can get pretty busy for a while. |
Beta Was this translation helpful? Give feedback.
-
@srzavin can you share an apk (or app name or a link to apk) which causing halts? This might help to debug this issue. P.S. next time, please don't open both discussion and issue with same question 🥲 |
Beta Was this translation helpful? Give feedback.
-
Hi I am getting this error of
Please let me know if there is any suggestion to fix this? It would really help :-) |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I am using JADX for a project, the issue is that when i run JADX it uses up 99% of my cpu resources (even after setting the threading parameter). Sometimes for some APK's it just simply halts using up 99% of my CPU and does not fix until i kill the JADX process or restart my computer. How can i fix this?
Beta Was this translation helpful? Give feedback.
All reactions