-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
144 lines (129 loc) · 5.75 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2023 The Evolution X Project
SPDX-License-Identifier: Apache-2.0
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:sharedUserId="android.uid.system"
package="org.evolution.oplus.OPlusExtras"
android:versionCode="7"
android:versionName="7.8" >
<uses-permission android:name="android.permission.INJECT_EVENTS"/>
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
<permission
android:name="org.evolution.oplus.OPlusExtras.touch.TRIGGER_SCREEN_OFF_GESTURE"
android:protectionLevel="signatureOrSystem" />
<protected-broadcast android:name="com.android.systemui.doze.pulse" />
<protected-broadcast android:name="org.evolution.oplus.OPlusExtras.slider.UPDATE_SLIDER_POSITION" />
<protected-broadcast android:name="org.evolution.oplus.OPlusExtras.slider.UPDATE_SLIDER_SETTINGS" />
<protected-broadcast android:name="org.evolution.oplus.OPlusExtras.touch.UPDATE_SETTINGS" />
<application
android:icon="@drawable/ic_launcher_settings"
android:label="@string/oplus_extras_title"
android:defaultToDeviceProtectedStorage="true"
android:directBootAware="true"
android:theme="@style/Theme.SubSettingsBase"
android:exported="true">
<!-- OPlus Extras -->
<activity
android:name=".OPlusExtrasActivity"
android:label="@string/oplus_extras_title"
android:exported="true">
<intent-filter>
<action android:name="com.android.settings.action.EXTRA_SETTINGS" />
</intent-filter>
<meta-data
android:name="com.android.settings.icon"
android:resource="@drawable/ic_oplus_extras" />
<meta-data
android:name="com.android.settings.category"
android:value="com.android.settings.category.ia.homepage" />
<meta-data android:name="com.android.settings.summary"
android:resource="@string/oplus_extras_summary" />
</activity>
<activity android:name=".OPlusExtras"
android:exported="false" />
<activity android:name=".slider.KeyHandler"
android:exported="false" />
<activity android:name=".touch.KeyHandler"
android:exported="false" />
<!-- Boot reciever -->
<receiver android:name=".Startup"
android:exported="false">
<intent-filter>
<action android:name="android.intent.action.LOCKED_BOOT_COMPLETED" />
</intent-filter>
</receiver>
<!-- Provider -->
<provider
android:name="androidx.startup.InitializationProvider"
android:authorities="${applicationId}.androidx-startup"
tools:replace="android:authorities"/>
<!-- Doze Activity -->
<activity
android:name=".doze.DozeSettingsActivity"
android:exported="true"
android:label="@string/ambient_display_title">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<!-- Kcal Activity -->
<activity
android:name=".kcal.KcalActivity"
android:exported="true"
android:label="@string/kcal_title"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<!-- Touch Gesture Settings Activity -->
<activity
android:name=".touch.TouchscreenGestureSettings"
android:exported="true"
android:label="@string/touchscreen_gesture_settings_title">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".touch.ScreenOffLaunchGestureActivity"
android:permission="org.evolution.oplus.OPlusExtras.touch.TRIGGER_SCREEN_OFF_GESTURE"
android:excludeFromRecents="true"
android:exported="true"
android:label="@string/touchscreen_gesture_settings_title"
android:theme="@style/AppTheme.Transparent">
</activity>
<!-- Jitter Test Activity -->
<activity
android:name=".uibench.JitterTestActivity"
android:exported="true"
android:label="@string/jitter_test_title">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<!-- Doze service -->
<service
android:name=".doze.DozeService"
android:permission="OneplusDozeService" />
<!-- Search Provider -->
<provider
android:name=".ConfigPanelSearchIndexablesProvider"
android:authorities="org.lineageos.device"
android:multiprocess="false"
android:grantUriPermissions="true"
android:permission="android.permission.READ_SEARCH_INDEXABLES"
android:exported="true">
<intent-filter>
<action android:name="android.content.action.SEARCH_INDEXABLES_PROVIDER" />
</intent-filter>
</provider>
</application>
</manifest>