mirror of
https://github.com/revanced/Apktool.git
synced 2025-05-02 15:04:24 +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;
|
public boolean baksmaliDebugMode = true;
|
||||||
|
|
||||||
// Common options
|
// Common options
|
||||||
public int jobs = Runtime.getRuntime().availableProcessors();
|
public int jobs = Math.min(Runtime.getRuntime().availableProcessors(), 8);
|
||||||
public String frameworkDirectory = null;
|
public String frameworkDirectory = null;
|
||||||
public String frameworkTag = null;
|
public String frameworkTag = null;
|
||||||
public String aaptPath = "";
|
public String aaptPath = "";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user