forked from StatiXOS/android_packages_apps_Statix_SystemUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
81 lines (67 loc) · 4.02 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?xml version="1.0" encoding="utf-8"?>
<!--
/*
* Copyright (C) 2014 Google Inc.
* Copyright (C) 2022 StatiXOS
* SPDX-License-Identifer: Apache-2.0
*/
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
package="com.android.systemui"
android:sharedUserId="android.uid.systemui"
xmlns:tools="http://schemas.android.com/tools"
coreApp="true">
<original-package android:name="com.android.systemui"/>
<uses-permission android:name="android.permission.ACCESS_CONTEXT_HUB"/>
<uses-permission android:name="android.permission.ACCESS_NOTIFICATION_POLICY"/>
<permission android:name="com.android.systemui.permission.SEND_ALERT_BROADCASTS" android:protectionLevel="preinstalled|signature"/>
<uses-permission android:name="com.google.android.deskclock.permission.RECEIVE_ALERT_BROADCASTS"/>
<protected-broadcast android:name="com.google.android.systemui.smartspace.CLICK_EVENT"/>
<protected-broadcast android:name="com.google.android.systemui.smartspace.ENABLE_UPDATE"/>
<protected-broadcast android:name="com.google.android.systemui.smartspace.EXPIRE_EVENT"/>
<permission android:name="com.google.android.ambientindication.permission.AMBIENT_INDICATION" android:protectionLevel="signature|system"/>
<uses-permission android:name="com.google.android.ambientindication.permission.AMBIENT_INDICATION"/>
<permission android:name="com.google.android.columbus.permission.CONFIGURE_COLUMBUS_GESTURE" android:protectionLevel="signature|preinstalled"/>
<uses-permission android:name="com.google.android.columbus.permission.CONFIGURE_COLUMBUS_GESTURE"/>
<uses-permission android:name="android.permission.HIGH_SAMPLING_RATE_SENSORS"/>
<permission android:name="com.google.android.elmyra.permission.CONFIGURE_ASSIST_GESTURE" android:protectionLevel="signature|preinstalled"/>
<permission android:name="com.google.sensor.elmyra.permission.USE_RAW_SENSOR" android:protectionLevel="signature|preinstalled"/>
<uses-permission android:name="android.permission.VIBRATE_ALWAYS_ON" />
<uses-permission android:name="com.google.android.elmyra.permission.CONFIGURE_ASSIST_GESTURE"/>
<uses-permission android:name="com.google.restricted_assist_gesture.permission.RESTRICTED_ASSIST_GESTURE_PROVIDER"/>
<uses-permission android:name="com.google.sensor.elmyra.permission.USE_RAW_SENSOR"/>
<!-- DataSwitch tile -->
<uses-permission android:name="android.permission.WRITE_APN_SETTINGS" />
<application
tools:replace="android:appComponentFactory"
android:appComponentFactory=".SystemUIAppComponentFactory">
<provider android:name=".keyguard.KeyguardSliceProvider"
tools:node="remove" />
<provider android:name="com.statix.android.systemui.keyguard.KeyguardSliceProviderStatix"
android:enabled="false"
android:exported="true"
android:authorities="com.android.systemui.keyguard"/>
<!-- Smart Pixels -->
<service android:name="com.statix.android.systemui.smartpixels.SmartPixelsService"
android:exported="true"
android:enabled="true" />
<!-- Columbus -->
<service
android:name="com.google.android.systemui.columbus.ColumbusServiceProxy"
android:permission="com.google.android.columbus.permission.CONFIGURE_COLUMBUS_GESTURE"
android:exported="true"/>
<service
android:name="com.google.android.systemui.columbus.ColumbusTargetRequestService"
android:exported="true">
<intent-filter>
<action android:name="com.google.android.systemui.QUICK_TAP_TARGET_REQUEST"/>
</intent-filter>
</service>
<!-- Elmyra -->
<service
android:name="com.google.android.systemui.elmyra.ElmyraServiceProxy"
android:permission="com.google.android.elmyra.permission.CONFIGURE_ASSIST_GESTURE"
android:exported="true"/>
</application>
</manifest>