set initial value for dex obfuscate
This commit is contained in:
parent
d3518d18d6
commit
c63794d304
|
|
@ -223,6 +223,9 @@ public class ConfigManager {
|
||||||
Object bool = config.get("enable_verbose_log");
|
Object bool = config.get("enable_verbose_log");
|
||||||
verboseLog = bool == null || (boolean) bool;
|
verboseLog = bool == null || (boolean) bool;
|
||||||
|
|
||||||
|
bool = config.get("enable_dex_obfuscate");
|
||||||
|
dexObfuscate = bool == null || (boolean) bool;
|
||||||
|
|
||||||
bool = config.get("enable_auto_add_shortcut");
|
bool = config.get("enable_auto_add_shortcut");
|
||||||
if (bool == null) {
|
if (bool == null) {
|
||||||
updateModulePrefs("lspd", 0, "config", "enable_auto_add_shortcut", true);
|
updateModulePrefs("lspd", 0, "config", "enable_auto_add_shortcut", true);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue