Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5e860f67 authored by syphyr's avatar syphyr
Browse files

Make adb use a custom prop for adb root

Change-Id: Ibc6b06d5e4729bd76fc26ffcd072a2ba4219c708
parent efbac329
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -947,8 +947,8 @@ public class DevelopmentSettings extends RestrictedSettingsFragment
        String oldValue = SystemProperties.get(ROOT_ACCESS_PROPERTY, "0");
        SystemProperties.set(ROOT_ACCESS_PROPERTY, newValue.toString());
        if (Integer.valueOf(newValue.toString()) < 2 && !oldValue.equals(newValue)
                && "1".equals(SystemProperties.get("service.adb.root", "0"))) {
            SystemProperties.set("service.adb.root", "0");
                && "1".equals(SystemProperties.get("cm.service.adb.root", "0"))) {
            SystemProperties.set("cm.service.adb.root", "0");
            Settings.Secure.putInt(getActivity().getContentResolver(),
                    Settings.Secure.ADB_ENABLED, 0);
            Settings.Secure.putInt(getActivity().getContentResolver(),
@@ -965,8 +965,8 @@ public class DevelopmentSettings extends RestrictedSettingsFragment
    private void resetRootAccessOptions() {
        String oldValue = SystemProperties.get(ROOT_ACCESS_PROPERTY, "0");
        SystemProperties.set(ROOT_ACCESS_PROPERTY, "0");
        if (!oldValue.equals("0") && "1".equals(SystemProperties.get("service.adb.root", "0"))) {
            SystemProperties.set("service.adb.root", "0");
        if (!oldValue.equals("0") && "1".equals(SystemProperties.get("cm.service.adb.root", "0"))) {
            SystemProperties.set("cm.service.adb.root", "0");
            Settings.Secure.putInt(getActivity().getContentResolver(),
                    Settings.Secure.ADB_ENABLED, 0);
            Settings.Secure.putInt(getActivity().getContentResolver(),