| Rashed Abdel-Tawab | 1c609d9 | 2017-10-18 20:33:08 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- |
| 3 | /* |
| Sam Mortimer | caafb87 | 2018-01-13 23:26:48 -0800 | [diff] [blame] | 4 | * Copyright (c) 2017-2020 The LineageOS Project |
| Rashed Abdel-Tawab | 1c609d9 | 2017-10-18 20:33:08 -0400 | [diff] [blame] | 5 | * |
| 6 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | * you may not use this file except in compliance with the License. |
| 8 | * You may obtain a copy of the License at |
| 9 | * |
| 10 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | * |
| 12 | * Unless required by applicable law or agreed to in writing, software |
| 13 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | * See the License for the specific language governing permissions and |
| 16 | * limitations under the License. |
| 17 | */ |
| 18 | --> |
| 19 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 20 | package="com.android.systemui"> |
| 21 | |
| Sam Mortimer | caafb87 | 2018-01-13 23:26:48 -0800 | [diff] [blame] | 22 | <!-- Network traffic monitor --> |
| 23 | <uses-permission android:name="android.permission.MAINLINE_NETWORK_STACK" /> |
| 24 | |
| Altaf-Mahdi | 79afa20 | 2015-01-31 22:45:50 +0000 | [diff] [blame] | 25 | <!-- QS Tiles --> |
| Danny Baumann | f1357f2 | 2019-07-03 15:12:22 +0200 | [diff] [blame] | 26 | <uses-permission android:name="android.permission.MAINLINE_NETWORK_STACK" /> |
| Altaf-Mahdi | 79afa20 | 2015-01-31 22:45:50 +0000 | [diff] [blame] | 27 | <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" /> |
| 28 | <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" /> |
| Joey | 57e53b7 | 2018-05-16 17:16:06 +0200 | [diff] [blame] | 29 | <uses-permission android:name="lineageos.permission.HARDWARE_ABSTRACTION_ACCESS" /> |
| Roman Birg | 76d2a7c | 2015-01-22 11:21:56 -0800 | [diff] [blame] | 30 | <uses-permission android:name="lineageos.permission.WRITE_SETTINGS"/> |
| Altaf-Mahdi | 79afa20 | 2015-01-31 22:45:50 +0000 | [diff] [blame] | 31 | |
| Rashed Abdel-Tawab | 1c609d9 | 2017-10-18 20:33:08 -0400 | [diff] [blame] | 32 | <!-- SystemUI Tuner --> |
| 33 | <application> |
| 34 | <activity-alias |
| 35 | android:name=".tuner.StatusBarTuner" |
| 36 | android:targetActivity=".tuner.TunerActivity" |
| 37 | android:icon="@drawable/tuner" |
| 38 | android:theme="@style/Theme.SubSettingsBase" |
| 39 | android:label="@string/status_bar_icons_title" |
| 40 | android:process=":tuner" |
| 41 | android:exported="true"> |
| 42 | <intent-filter> |
| 43 | <action android:name="com.android.settings.action.STATUS_BAR_TUNER" /> |
| 44 | <category android:name="android.intent.category.DEFAULT" /> |
| 45 | </intent-filter> |
| 46 | </activity-alias> |
| 47 | </application> |
| 48 | |
| 49 | </manifest> |