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

Commit 3750e75f authored by Glenn Kasten's avatar Glenn Kasten Committed by Android (Google) Code Review
Browse files

Merge "Move setting to disable automatic USB routing" into lmp-dev

parents 37f100ea 34cc4db1
Loading
Loading
Loading
Loading
+10 −10
Original line number Diff line number Diff line
@@ -2363,16 +2363,6 @@ public final class Settings {
         */
        public static final String VIBRATE_WHEN_RINGING = "vibrate_when_ringing";

        /**
         * Whether automatic routing of system audio to USB audio peripheral is disabled.
         * The value is boolean (1 or 0), where 1 means automatic routing is disabled,
         * and 0 means automatic routing is enabled.
         *
         * @hide
         */
        public static final String USB_AUDIO_AUTOMATIC_ROUTING_DISABLED =
                "usb_audio_automatic_routing_disabled";

        /**
         * Whether the audible DTMF tones are played by the dialer when dialing. The value is
         * boolean (1 or 0).
@@ -4744,6 +4734,16 @@ public final class Settings {
         */
        public static final String TV_INPUT_CUSTOM_LABELS = "tv_input_custom_labels";

        /**
         * Whether automatic routing of system audio to USB audio peripheral is disabled.
         * The value is boolean (1 or 0), where 1 means automatic routing is disabled,
         * and 0 means automatic routing is enabled.
         *
         * @hide
         */
        public static final String USB_AUDIO_AUTOMATIC_ROUTING_DISABLED =
                "usb_audio_automatic_routing_disabled";

        /**
         * This are the settings to be backed up.
         *
+2 −2
Original line number Diff line number Diff line
@@ -4618,8 +4618,8 @@ public class AudioService extends IAudioService.Stub {
                // in SettingsObserver. Here we should log that a USB device is connected
                // and disconnected with its address (card , device) and force the
                // connection or disconnection when the setting changes.
                int isDisabled = Settings.System.getInt(mContentResolver,
                        Settings.System.USB_AUDIO_AUTOMATIC_ROUTING_DISABLED, 0);
                int isDisabled = Settings.Secure.getInt(mContentResolver,
                        Settings.Secure.USB_AUDIO_AUTOMATIC_ROUTING_DISABLED, 0);
                if (isDisabled != 0) {
                    return;
                }