diff options
| author | 2023-04-11 10:20:30 +0000 | |
|---|---|---|
| committer | 2023-04-11 10:20:30 +0000 | |
| commit | 7766ef1110533eb2e23cfc8840fa73ea61f32579 (patch) | |
| tree | ebefdbdd98576bf4067125ad76fce4ec06b601be | |
| parent | 0c907a97c31249a51bbfc16b19f5c6650bc77155 (diff) | |
| parent | 718a14edf581db2f64d5048075e5345704050bfd (diff) | |
Merge "Add intent filter action LAUNCH_NOTE_TASK" into udc-dev
| -rw-r--r-- | packages/SystemUI/AndroidManifest.xml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/packages/SystemUI/AndroidManifest.xml b/packages/SystemUI/AndroidManifest.xml index dabb5780621c..a00f401756f7 100644 --- a/packages/SystemUI/AndroidManifest.xml +++ b/packages/SystemUI/AndroidManifest.xml @@ -984,7 +984,13 @@ android:exported="true" android:excludeFromRecents="true" android:resizeableActivity="false" - android:theme="@android:style/Theme.NoDisplay" /> + android:theme="@android:style/Theme.NoDisplay" > + + <intent-filter> + <action android:name="com.android.systemui.action.LAUNCH_NOTE_TASK"/> + <category android:name="android.intent.category.DEFAULT" /> + </intent-filter> + </activity> <!-- LaunchNoteTaskManagedProfileProxyActivity MUST NOT be exported because it allows caller to specify an Android user when launching the default notes app. --> |