set initial value for dex obfuscate

This commit is contained in:
kotori2 2022-02-08 02:47:21 +08:00 committed by LoveSy
parent d3518d18d6
commit c63794d304
1 changed files with 3 additions and 0 deletions

View File

@ -223,6 +223,9 @@ public class ConfigManager {
Object bool = config.get("enable_verbose_log");
verboseLog = bool == null || (boolean) bool;
bool = config.get("enable_dex_obfuscate");
dexObfuscate = bool == null || (boolean) bool;
bool = config.get("enable_auto_add_shortcut");
if (bool == null) {
updateModulePrefs("lspd", 0, "config", "enable_auto_add_shortcut", true);