mirror of
https://github.com/revanced/Apktool.git
synced 2025-04-29 21:54:25 +02:00
fix: set max automatic threads to 8
This commit is contained in:
parent
f8e1a59632
commit
858c07143d
@ -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 = "";
|
||||
|
Loading…
x
Reference in New Issue
Block a user