Skip to content

Commit

Permalink
fix: set max automatic threads to 8
Browse files Browse the repository at this point in the history
  • Loading branch information
iBotPeaches committed Dec 1, 2024
1 parent f8e1a59 commit 858c071
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public class Config {
public boolean baksmaliDebugMode = true;

// Common options
public int jobs = Runtime.getRuntime().availableProcessors();
public int jobs = Math.min(Runtime.getRuntime().availableProcessors(), 8);
public String frameworkDirectory = null;
public String frameworkTag = null;
public String aaptPath = "";
Expand Down

0 comments on commit 858c071

Please sign in to comment.