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

Commit 9b902626 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add a DeviceConfig namespace for the NOTIFICATION_ASSITANT package."

parents 4f32c1b7 1aebc9b5
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -5449,6 +5449,7 @@ package android.provider {
    field public static final String NAMESPACE_GAME_DRIVER = "game_driver";
    field public static final String NAMESPACE_INPUT_NATIVE_BOOT = "input_native_boot";
    field public static final String NAMESPACE_NETD_NATIVE = "netd_native";
    field public static final String NAMESPACE_NOTIFICATION_ASSISTANT = "notification_assistant";
  }
  public static interface DeviceConfig.OnPropertyChangedListener {
+9 −0
Original line number Diff line number Diff line
@@ -94,6 +94,15 @@ public final class DeviceConfig {
    @SystemApi
    public static final String NAMESPACE_NETD_NATIVE = "netd_native";

    /**
     * Namespace for features related to the ExtServices Notification Assistant.
     * These features are applied immediately.
     *
     * @hide
     */
    @SystemApi
    public static final String NAMESPACE_NOTIFICATION_ASSISTANT = "notification_assistant";

    private static final Object sLock = new Object();
    @GuardedBy("sLock")
    private static Map<OnPropertyChangedListener, Pair<String, Executor>> sListeners =