-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
112 lines (101 loc) · 5.05 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
<!--
/*
* Copyright (C) 2023 The LibreMobileOS Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.android.settings">
<!-- LineageHardware -->
<uses-permission android:name="lineageos.permission.HARDWARE_ABSTRACTION_ACCESS" />
<!-- LiveDisplay -->
<uses-permission android:name="lineageos.permission.MANAGE_LIVEDISPLAY" />
<!-- App lock -->
<uses-permission android:name="com.android.permission.MANAGE_APP_LOCK" />
<application>
<activity android:name=".backup.transport.TransportActivity"
android:label="@string/backup_transport_title"
android:icon="@drawable/ic_settings_backup"
android:exported="false">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="settings"
android:host="com.android.settings.backup.transport" />
</intent-filter>
</activity>
<activity android:name=".password.ChooseLockPatternSize"
android:exported="false"
android:theme="@style/GlifTheme.Light" />
<!-- App lock -->
<activity android:name=".security.applock.AppLockCredentialActivity"
android:exported="false"
android:permission="com.android.permission.MANAGE_APP_LOCK"
android:excludeFromRecents="true"
android:stateNotNeeded="true"
android:taskAffinity="com.android.settings.applock"
android:launchMode="singleInstance"
android:theme="@android:style/Theme.Translucent.NoTitleBar">
<intent-filter>
<action android:name="com.libremobileos.applock.action.UNLOCK_APP" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".security.applock.AppLockSubSettings"
android:exported="false"
android:excludeFromRecents="true"
android:taskAffinity="com.android.settings.applock"
android:launchMode="singleTask" />
<activity
android:name="Settings$RefreshRateSettingsActivity"
android:label="@string/refresh_rate_title"
android:exported="true">
<intent-filter android:priority="32">
<action android:name="android.intent.action.MAIN" />
<category android:name="com.android.settings.SHORTCUT" />
</intent-filter>
<intent-filter android:priority="1">
<action android:name="android.settings.REFRESH_RATE_SETTINGS" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<meta-data android:name="com.android.settings.FRAGMENT_CLASS"
android:value="com.android.settings.display.RefreshRateSettings" />
<meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
android:value="@string/menu_key_display"/>
<meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
android:value="true" />
</activity>
<!-- Provide direct entry into Dev settings - Running Services -->
<activity android:name="Settings$DevRunningServicesActivity"
android:label="@string/runningservices_settings_title"
android:theme="@style/Theme.SubSettingsBase"
android:enabled="true"
android:exported="true"
android:excludeFromRecents="true"
android:taskAffinity="com.android.settings"
android:parentActivityName="Settings">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.MONKEY" />
<category android:name="android.intent.category.VOICE_LAUNCH" />
</intent-filter>
<meta-data android:name="com.android.settings.FRAGMENT_CLASS"
android:value="com.android.settings.applications.RunningServices" />
<meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
android:value="true" />
</activity>
</application>
</manifest>