This repository has been archived by the owner on Sep 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 527
/
AndroidManifest.xml
209 lines (184 loc) · 8.61 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="biz.bokhorst.xprivacy"
android:installLocation="internalOnly"
android:versionCode="481"
android:versionName="3.6.19" >
<uses-sdk
android:minSdkVersion="15"
android:targetSdkVersion="22" />
<permission-tree
android:name="biz.bokhorst.xprivacy"
android:description="@string/app_name"
android:icon="@drawable/ic_launcher" />
<permission
android:name="biz.bokhorst.xprivacy.MANAGE_PACKAGES"
android:description="@string/permission_manage"
android:label="@string/permission_manage"
android:protectionLevel="dangerous" />
<permission
android:name="biz.bokhorst.xprivacy.MANAGE_XPRIVACY"
android:description="@string/permission_restrictions"
android:label="@string/permission_restrictions"
android:protectionLevel="dangerous" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="biz.bokhorst.xprivacy.MANAGE_PACKAGES" />
<uses-permission android:name="biz.bokhorst.xprivacy.MANAGE_XPRIVACY" />
<uses-permission android:name="biz.bokhorst.xprivacy.pro.CHECK" />
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:resizeable="true"
android:smallScreens="true"
android:xlargeScreens="true" />
<application
android:name="ApplicationEx"
android:allowBackup="false"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/CustomTheme.Light" >
<!-- Xposed -->
<meta-data
android:name="xposedmodule"
android:value="true" />
<meta-data
android:name="xposedminversion"
android:value="54" />
<meta-data
android:name="xposeddescription"
android:value="@string/app_description" />
<!-- Samsung multi window support -->
<meta-data
android:name="com.sec.android.support.multiwindow"
android:value="true" />
<meta-data
android:name="com.sec.android.multiwindow.DEFAULT_SIZE_W"
android:resource="@dimen/app_defaultsize_w" />
<meta-data
android:name="com.sec.android.multiwindow.DEFAULT_SIZE_H"
android:resource="@dimen/app_defaultsize_h" />
<meta-data
android:name="com.sec.android.multiwindow.MINIMUM_SIZE_W"
android:resource="@dimen/app_minimumsize_w" />
<meta-data
android:name="com.sec.android.multiwindow.MINIMUM_SIZE_H"
android:resource="@dimen/app_minimumsize_h" />
<activity
android:name=".ActivityMain"
android:configChanges="keyboardHidden|orientation|screenSize"
android:label="@string/app_name"
android:launchMode="singleTop" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.MULTIWINDOW_LAUNCHER" />
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="file" />
<data android:host="*" />
<data android:mimeType="*/*" />
<data android:pathPattern=".*XPrivacy_license\\.txt" />
</intent-filter>
</activity>
<activity
android:name=".ActivityApp"
android:configChanges="keyboardHidden|orientation|screenSize"
android:launchMode="singleTop"
android:parentActivityName=".ActivityMain" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="biz.bokhorst.xprivacy.ActivityMain" />
<intent-filter>
<action android:name="biz.bokhorst.xprivacy.action.APPLICATION" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".ActivitySettings"
android:configChanges="keyboardHidden|orientation|screenSize"
android:launchMode="singleTop"
android:parentActivityName=".ActivityMain"
android:windowSoftInputMode="stateHidden" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="biz.bokhorst.xprivacy.ActivityMain" />
<intent-filter>
<action android:name="biz.bokhorst.xprivacy.action.SETTINGS" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".ActivityUsage"
android:configChanges="keyboardHidden|orientation|screenSize"
android:parentActivityName=".ActivityMain" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="biz.bokhorst.xprivacy.ActivityMain" />
<intent-filter>
<action android:name="biz.bokhorst.xprivacy.action.USAGE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".ActivityShare"
android:configChanges="keyboardHidden|orientation|screenSize"
android:parentActivityName=".ActivityMain" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="biz.bokhorst.xprivacy.ActivityMain" />
<intent-filter>
<action android:name="biz.bokhorst.xprivacy.action.IMPORT" />
<action android:name="biz.bokhorst.xprivacy.action.EXPORT" />
<action android:name="biz.bokhorst.xprivacy.action.FETCH" />
<action android:name="biz.bokhorst.xprivacy.action.SUBMIT" />
<action android:name="biz.bokhorst.xprivacy.action.TOGGLE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<receiver android:name=".PackageChange" >
<intent-filter>
<action android:name="android.intent.action.PACKAGE_ADDED" />
<action android:name="android.intent.action.PACKAGE_REPLACED" />
<action android:name="android.intent.action.PACKAGE_REMOVED" />
<data android:scheme="package" />
</intent-filter>
</receiver>
<receiver android:name=".BootReceiver" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<receiver
android:name=".DeviceAdministratorReceiver"
android:permission="android.permission.BIND_DEVICE_ADMIN" >
<meta-data
android:name="android.app.device_admin"
android:resource="@xml/device_admin" />
<intent-filter>
<action android:name="android.app.action.DEVICE_ADMIN_ENABLED" />
<action android:name="android.app.action.ACTION_DEVICE_ADMIN_DISABLE_REQUESTED" />
<action android:name="android.app.action.ACTION_DEVICE_ADMIN_DISABLED" />
</intent-filter>
</receiver>
<service
android:name=".UpdateService"
android:enabled="true"
android:exported="true"
android:permission="biz.bokhorst.xprivacy.MANAGE_XPRIVACY"
android:process=":update" >
<intent-filter>
<action android:name="biz.bokhorst.xprivacy.action.FLUSH" />
<action android:name="biz.bokhorst.xprivacy.action.UPDATE" />
</intent-filter>
</service>
</application>
</manifest>