diff options
| author | 2022-03-06 12:39:29 +0000 | |
|---|---|---|
| committer | 2022-03-09 01:12:00 +0000 | |
| commit | 00f9beb29d30747fd497320cf58e67b155adbae5 (patch) | |
| tree | 525f5300a1cf3ba3fef8d3b59721810009bcfc11 | |
| parent | 650bc974bf8f74d1d6a3abf291c2e97f1c3bef6f (diff) | |
Allow sysui and launcher to use FLAG_SLIPPERY
Following commit I7a81d97ffccd7d56ca4f7e655e2cbf715b200ab0, the flag will be used to enable the interaction of pulling down the notification shade from the home screen.
Fix: 222991453
Change-Id: Ib49fcb6bd918b90f770b116f37ed356c2b2d59a6
(cherry picked from commit c07d90ff207cef18e30cc35efb8a0b456b24ba01)
| -rw-r--r-- | data/etc/com.android.launcher3.xml | 1 | ||||
| -rw-r--r-- | data/etc/com.android.systemui.xml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/data/etc/com.android.launcher3.xml b/data/etc/com.android.launcher3.xml index 598d2027a0e9..36a51341f52d 100644 --- a/data/etc/com.android.launcher3.xml +++ b/data/etc/com.android.launcher3.xml @@ -16,6 +16,7 @@ --> <permissions> <privapp-permissions package="com.android.launcher3"> + <permission name="android.permission.ALLOW_SLIPPERY_TOUCHES"/> <permission name="android.permission.BIND_APPWIDGET"/> <permission name="android.permission.CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS"/> <permission name="android.permission.GET_ACCOUNTS_PRIVILEGED"/> diff --git a/data/etc/com.android.systemui.xml b/data/etc/com.android.systemui.xml index ae350ec547c3..d1873a0f40cf 100644 --- a/data/etc/com.android.systemui.xml +++ b/data/etc/com.android.systemui.xml @@ -17,6 +17,7 @@ <permissions> <privapp-permissions package="com.android.systemui"> <permission name="android.permission.CAPTURE_AUDIO_OUTPUT"/> + <permission name="android.permission.ALLOW_SLIPPERY_TOUCHES"/> <permission name="android.permission.BATTERY_STATS"/> <permission name="android.permission.BIND_APPWIDGET"/> <permission name="android.permission.BLUETOOTH_PRIVILEGED"/> |