forked from M66B/XPrivacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
96 lines (86 loc) · 3.71 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
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="biz.bokhorst.xprivacy"
android:versionCode="167"
android:versionName="1.10" >
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="18" />
<uses-permission android:name="android.permission.INTERNET" />
<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="biz.bokhorst.xprivacy.pro.CHECK" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:largeHeap="true"
android:theme="@style/CustomTheme.Light" >
<meta-data
android:name="xposedmodule"
android:value="true" />
<meta-data
android:name="xposedminversion"
android:value="30+" />
<meta-data
android:name="xposeddescription"
android:value="The ultimate privacy manager" />
<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" />
</intent-filter>
</activity>
<activity
android:name=".ActivityApp"
android:parentActivityName=".ActivityMain" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="biz.bokhorst.xprivacy.ActivityMain" />
</activity>
<activity
android:name=".ActivityUsage"
android:parentActivityName=".ActivityMain" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="biz.bokhorst.xprivacy.ActivityMain" />
</activity>
<activity
android:name=".ActivityShare"
android:theme="@android:style/Theme.Translucent.NoTitleBar" >
<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" />
<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>
<provider
android:name=".PrivacyProvider"
android:authorities="biz.bokhorst.xprivacy.provider"
android:enabled="true"
android:excludeFromRecents="true"
android:exported="true"
android:process=":provider"
android:syncable="false" >
</provider>
</application>
</manifest>