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

Unverified Commit dc2af8b9 authored by Luca Stefani's avatar Luca Stefani Committed by Michael Bestas
Browse files

Add toggle to enable ADB root

Author: dianlujitao <dianlujitao@lineageos.org>
Date:   Sun Nov 24 14:33:05 2019 +0800

    Settings: Mark adb root toggle as non-persistent

     * It's always read from the binder API

    Change-Id: I88234450a2dcfbea985eb3c48114d869db331cd0

Author: dianlujitao <dianlujitao@lineageos.org>
Date:   Sun Nov 24 14:34:51 2019 +0800

    Settings: Remove ADBROOT permission from manifest

    Change-Id: I2a458cda22b3d370734adb89ff8e0303ca1c8374

Author: Luca Stefani <luca.stefani.ge1@gmail.com>
Date:   Fri Mar 13 23:05:25 2020 +0100

    Hide ADB Root preference on user builds

    Change-Id: I8c9251ddda0eb15e1134d4fafbf3d972f5fa8809

Author: LuK1337 <priv.luk@gmail.com>
Date:   Thu Mar 24 09:06:33 2022 +0100

    AdbRootPreferenceController: Use ADBRootService::isSupported()

    This allows us to show the preference in Settings even if
    Build.IS_DEBUGGABLE is false.

    Change-Id: I28f8a0fefc7b611ce7433de3dae5579abdb73274

Change-Id: Ic80dbf79265c0fe7113f42299479873befb05004
parent c19c8950
Loading
Loading
Loading
Loading
+4 −0
Original line number Original line Diff line number Diff line
@@ -15,6 +15,10 @@
     limitations under the License.
     limitations under the License.
-->
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
    <!-- Android debugging as root -->
    <string name="adb_enable_root">Rooted debugging</string>
    <string name="adb_enable_summary_root">Allow running Android debugging as root</string>

    <!-- Backup Transport selection settings menu and activity title -->
    <!-- Backup Transport selection settings menu and activity title -->
    <string name="backup_transport_setting_label">Change backup provider</string>
    <string name="backup_transport_setting_label">Change backup provider</string>
    <string name="backup_transport_title">Select backup provider</string>
    <string name="backup_transport_title">Select backup provider</string>
+7 −0
Original line number Original line Diff line number Diff line
@@ -158,6 +158,13 @@
            android:title="@string/enable_adb"
            android:title="@string/enable_adb"
            android:summary="@string/enable_adb_summary" />
            android:summary="@string/enable_adb_summary" />


        <SwitchPreference
            android:key="enable_adb_root"
            android:title="@string/adb_enable_root"
            android:summary="@string/adb_enable_summary_root"
            android:dependency="enable_adb"
            android:persistent="false" />

        <Preference android:key="clear_adb_keys"
        <Preference android:key="clear_adb_keys"
                    android:title="@string/clear_adb_keys" />
                    android:title="@string/clear_adb_keys" />


+84 −0
Original line number Original line Diff line number Diff line
/*
 * Copyright (C) 2018 The LineageOS Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.android.settings.development;

import android.adb.ADBRootService;
import android.content.Context;
import android.os.UserManager;

import androidx.preference.Preference;
import androidx.preference.PreferenceScreen;
import androidx.preference.SwitchPreference;

import com.android.settings.R;
import com.android.settings.core.PreferenceControllerMixin;
import com.android.settingslib.development.DeveloperOptionsPreferenceController;

public class AdbRootPreferenceController extends DeveloperOptionsPreferenceController
        implements Preference.OnPreferenceChangeListener, PreferenceControllerMixin {

    private static final String TAG = "AdbRootPreferenceController";
    private static final String PREF_KEY = "enable_adb_root";

    private final ADBRootService mADBRootService;

    public AdbRootPreferenceController(Context context,
            DevelopmentSettingsDashboardFragment fragment) {
        super(context);

        mADBRootService = new ADBRootService();
    }

    @Override
    public String getPreferenceKey() {
        return PREF_KEY;
    }

    @Override
    public boolean isAvailable() {
        return mADBRootService.isSupported();
    }

    @Override
    public void displayPreference(PreferenceScreen screen) {
        super.displayPreference(screen);

        ((SwitchPreference) mPreference).setChecked(mADBRootService.getEnabled());

        if (!isAdminUser()) {
            mPreference.setEnabled(false);
        }
    }

    @Override
    public boolean onPreferenceChange(Preference preference, Object newValue) {
        final boolean rootEnabled = (Boolean) newValue;
        mADBRootService.setEnabled(rootEnabled);
        return true;
    }

    @Override
    protected void onDeveloperOptionsSwitchEnabled() {
        if (isAdminUser()) {
            mPreference.setEnabled(true);
        }
    }

    boolean isAdminUser() {
        return ((UserManager) mContext.getSystemService(Context.USER_SERVICE)).isAdminUser();
    }
}
+1 −0
Original line number Original line Diff line number Diff line
@@ -634,6 +634,7 @@ public class DevelopmentSettingsDashboardFragment extends RestrictedDashboardFra
        controllers.add(new DisableAutomaticUpdatesPreferenceController(context));
        controllers.add(new DisableAutomaticUpdatesPreferenceController(context));
        controllers.add(new SelectDSUPreferenceController(context));
        controllers.add(new SelectDSUPreferenceController(context));
        controllers.add(new AdbPreferenceController(context, fragment));
        controllers.add(new AdbPreferenceController(context, fragment));
        controllers.add(new AdbRootPreferenceController(context, fragment));
        controllers.add(new ClearAdbKeysPreferenceController(context, fragment));
        controllers.add(new ClearAdbKeysPreferenceController(context, fragment));
        controllers.add(new WirelessDebuggingPreferenceController(context, lifecycle));
        controllers.add(new WirelessDebuggingPreferenceController(context, lifecycle));
        controllers.add(new AdbAuthorizationTimeoutPreferenceController(context));
        controllers.add(new AdbAuthorizationTimeoutPreferenceController(context));