blob: ed25c1ce9a40c39058fb000ac4ca7922b7250fa3 (
plain)
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
|
<!--
~ Copyright (C) 2023 MURENA SAS
~ Copyright (C) 2022 E FOUNDATION
~
~ This program is free software: you can redistribute it and/or modify
~ it under the terms of the GNU General Public License as published by
~ the Free Software Foundation, either version 3 of the License, or
~ (at your option) any later version.
~
~ This program is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU General Public License for more details.
~
~ You should have received a copy of the GNU General Public License
~ along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="foundation.e.advancedprivacy.permissions.eos">
<uses-permission android:name="android.permission.MANAGE_APP_OPS_MODES"
tools:ignore="ProtectedPermissions" />
<uses-permission
android:name="android.permission.GRANT_RUNTIME_PERMISSIONS"
tools:ignore="ProtectedPermissions"
/>
<uses-permission
android:name="android.permission.REVOKE_RUNTIME_PERMISSIONS"
tools:ignore="ProtectedPermissions"
/>
<!-- The following permission have privileged protection level.
These permissions are granted only if the app is privileged by the system,
like installed in /system/priv-app and a privapp-permissions in /system/etc/permissions/
(see eprivavymoduledemo for an example) -->
<uses-permission
android:name="android.permission.UPDATE_APP_OPS_STATS"
tools:ignore="ProtectedPermissions"
/>
<uses-permission android:name="android.permission.WATCH_APPOPS"
tools:ignore="ProtectedPermissions"
/>
<uses-permission
android:name="android.permission.GET_APP_OPS_STATS"
tools:ignore="ProtectedPermissions"
/>
<uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS"
tools:ignore="ProtectedPermissions"
/>
<uses-permission android:name="android.permission.CONTROL_VPN"
tools:ignore="ProtectedPermissions" />
<uses-permission android:name="android.permission.CONTROL_ALWAYS_ON_VPN"
tools:ignore="ProtectedPermissions" />
<uses-permission android:name="android.permission.MANAGE_USERS"
tools:ignore="ProtectedPermissions" />
<uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL"
tools:ignore="ProtectedPermissions" />
</manifest>
|