| Jordan Demeulenaere | 359df6f | 2022-08-02 10:32:27 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- |
| 3 | Copyright (C) 2022 The Android Open Source Project |
| 4 | |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | you may not use this file except in compliance with the License. |
| 7 | You may obtain a copy of the License at |
| 8 | |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | Unless required by applicable law or agreed to in writing, software |
| 12 | distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | See the License for the specific language governing permissions and |
| 15 | limitations under the License. |
| 16 | --> |
| 17 | |
| 18 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| Jordan Demeulenaere | 66d123f | 2022-07-21 15:22:07 +0200 | [diff] [blame] | 19 | xmlns:tools="http://schemas.android.com/tools" |
| 20 | |
| Jordan Demeulenaere | 359df6f | 2022-08-02 10:32:27 +0200 | [diff] [blame] | 21 | package="com.android.systemui.compose.features"> |
| Jordan Demeulenaere | 66d123f | 2022-07-21 15:22:07 +0200 | [diff] [blame] | 22 | <application |
| 23 | android:name="android.app.Application" |
| 24 | android:appComponentFactory="androidx.core.app.AppComponentFactory" |
| 25 | tools:replace="android:name,android:appComponentFactory"> |
| 26 | <!-- Disable providers from SystemUI --> |
| 27 | <provider android:name="com.android.systemui.keyguard.KeyguardSliceProvider" |
| 28 | android:authorities="com.android.systemui.test.keyguard.disabled" |
| 29 | android:enabled="false" |
| 30 | tools:replace="android:authorities" |
| 31 | tools:node="remove" /> |
| 32 | <provider android:name="com.google.android.systemui.keyguard.KeyguardSliceProviderGoogle" |
| 33 | android:authorities="com.android.systemui.test.keyguard.disabled" |
| 34 | android:enabled="false" |
| 35 | tools:replace="android:authorities" |
| 36 | tools:node="remove" /> |
| Alejandro Nijamkin | 04777db | 2022-10-28 17:11:04 -0700 | [diff] [blame] | 37 | <provider android:name="com.android.systemui.keyguard.KeyguardQuickAffordanceProvider" |
| 38 | android:authorities="com.android.systemui.test.keyguard.quickaffordance.disabled" |
| 39 | android:enabled="false" |
| 40 | tools:replace="android:authorities" |
| 41 | tools:node="remove" /> |
| Jordan Demeulenaere | 66d123f | 2022-07-21 15:22:07 +0200 | [diff] [blame] | 42 | <provider android:name="com.android.keyguard.clock.ClockOptionsProvider" |
| 43 | android:authorities="com.android.systemui.test.keyguard.clock.disabled" |
| 44 | android:enabled="false" |
| 45 | tools:replace="android:authorities" |
| 46 | tools:node="remove" /> |
| 47 | <provider android:name="com.android.systemui.people.PeopleProvider" |
| 48 | android:authorities="com.android.systemui.test.people.disabled" |
| 49 | android:enabled="false" |
| 50 | tools:replace="android:authorities" |
| 51 | tools:node="remove" /> |
| 52 | <provider android:name="androidx.core.content.FileProvider" |
| 53 | android:authorities="com.android.systemui.test.fileprovider.disabled" |
| 54 | android:enabled="false" |
| 55 | tools:replace="android:authorities" |
| 56 | tools:node="remove"/> |
| 57 | </application> |
| Jordan Demeulenaere | 359df6f | 2022-08-02 10:32:27 +0200 | [diff] [blame] | 58 | </manifest> |