-
Notifications
You must be signed in to change notification settings - Fork 11
/
AndroidManifest.xml
43 lines (35 loc) · 1.54 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
<?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:tools="http://schemas.android.com/tools"
coreApp="true"
package="com.android.systemui"
android:sharedUserId="android.uid.systemui">
<original-package android:name="com.android.systemui" />
<!-- DataSwitch tile -->
<uses-permission android:name="android.permission.WRITE_APN_SETTINGS" />
<!-- Elmyra -->
<uses-permission android:name="android.permission.ACCESS_CONTEXT_HUB" />
<permission
android:name="com.google.sensor.elmyra.permission.USE_RAW_SENSOR"
android:protectionLevel="preinstalled|signature" />
<uses-permission android:name="com.google.sensor.elmyra.permission.USE_RAW_SENSOR" />
<!-- Now Playing -->
<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" />
<application
android:appComponentFactory="com.statix.android.systemui.StatixSystemUIAppComponentFactory"
tools:replace="android:appComponentFactory">
<!-- Smart Pixels -->
<service
android:name="com.statix.android.systemui.smartpixels.SmartPixelsService"
android:enabled="true"
android:exported="true" />
</application>
</manifest>