diff options
| author | 2022-10-25 16:31:58 -0700 | |
|---|---|---|
| committer | 2022-11-07 19:54:17 +0000 | |
| commit | fc13cb1d680d57ea6401e2d45dfb1e46bf046fc7 (patch) | |
| tree | dddc028f7a64587237d107e96c04cb2f54c734a9 /packages/SystemUI/AndroidManifest.xml | |
| parent | 05d894c1b37202d9052ec0bd8e126b424776f962 (diff) | |
Generate consent dialog when device log access is requested in SystemUI
This change is to implement device log access dialog from SystemUI rather than
system server.
Bug: 238434889, 244173014
Test: GtsVerifier
Ignore-AOSP-First: migration of device log access dialog
Change-Id: I17058c008084f91099cd45a51ec8d8fbab1d78bb
Diffstat (limited to 'packages/SystemUI/AndroidManifest.xml')
| -rw-r--r-- | packages/SystemUI/AndroidManifest.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/SystemUI/AndroidManifest.xml b/packages/SystemUI/AndroidManifest.xml index 07e37d3f67d6..61df65aff8d7 100644 --- a/packages/SystemUI/AndroidManifest.xml +++ b/packages/SystemUI/AndroidManifest.xml @@ -986,5 +986,11 @@ <action android:name="com.android.systemui.action.DISMISS_VOLUME_PANEL_DIALOG" /> </intent-filter> </receiver> + + <activity android:name=".logcat.LogAccessDialogActivity" + android:theme="@android:style/Theme.Translucent.NoTitleBar" + android:excludeFromRecents="true" + android:exported="false"> + </activity> </application> </manifest> |