blob: b39dcfe5e27284e8f8ff3ce5acbfc73883acf482 [file] [log] [blame]
Rashed Abdel-Tawab1c609d92017-10-18 20:33:08 -04001<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
Sam Mortimercaafb872018-01-13 23:26:48 -08004 * Copyright (c) 2017-2020 The LineageOS Project
Rashed Abdel-Tawab1c609d92017-10-18 20:33:08 -04005 *
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 Mortimercaafb872018-01-13 23:26:48 -080022 <!-- Network traffic monitor -->
23 <uses-permission android:name="android.permission.MAINLINE_NETWORK_STACK" />
24
Altaf-Mahdi79afa202015-01-31 22:45:50 +000025 <!-- QS Tiles -->
Danny Baumannf1357f22019-07-03 15:12:22 +020026 <uses-permission android:name="android.permission.MAINLINE_NETWORK_STACK" />
Altaf-Mahdi79afa202015-01-31 22:45:50 +000027 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
28 <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" />
Joey57e53b72018-05-16 17:16:06 +020029 <uses-permission android:name="lineageos.permission.HARDWARE_ABSTRACTION_ACCESS" />
Roman Birg76d2a7c2015-01-22 11:21:56 -080030 <uses-permission android:name="lineageos.permission.WRITE_SETTINGS"/>
Altaf-Mahdi79afa202015-01-31 22:45:50 +000031
Rashed Abdel-Tawab1c609d92017-10-18 20:33:08 -040032 <!-- 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>