version:1.3.0
update: fix:按键屏蔽异常 add:
This commit is contained in:
@@ -649,6 +649,11 @@ public class JGYUtils {
|
||||
if (ApkUtils.canremove_systemapp.contains(packageName)) {
|
||||
continue;
|
||||
}
|
||||
if ("com.jiaoguanyi.appstore".equals(packageName)
|
||||
||"com.jiaoguanyi.store".equals(packageName)
|
||||
) {
|
||||
continue;
|
||||
}
|
||||
if (!resultList.contains(packageName)) {
|
||||
new Thread(new Runnable() {
|
||||
@Override
|
||||
|
||||
@@ -639,15 +639,15 @@ public class SysSettingUtils {
|
||||
} else {
|
||||
List<Integer> disableWhat = new ArrayList<>();
|
||||
int home = navJson.getInteger("home");
|
||||
if (home == 1) {
|
||||
if (home == 0) {
|
||||
disableWhat.add(StatusBarManager.DISABLE_HOME);
|
||||
}
|
||||
int returnKey = navJson.getInteger("returnKey");
|
||||
if (returnKey == 1) {
|
||||
if (returnKey == 0) {
|
||||
disableWhat.add(StatusBarManager.DISABLE_BACK);
|
||||
}
|
||||
int taskbar = navJson.getInteger("taskbar");
|
||||
if (taskbar == 1) {
|
||||
if (taskbar == 0) {
|
||||
disableWhat.add(StatusBarManager.DISABLE_RECENT);
|
||||
}
|
||||
int what = 0;
|
||||
|
||||
Reference in New Issue
Block a user