-
Notifications
You must be signed in to change notification settings - Fork 25
/
AndroidManifest.xml
122 lines (109 loc) · 5.13 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
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="at.jclehner.appopsxposed">
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.GET_APP_OPS_STATS" />
<uses-permission android:name="android.permission.UPDATE_APP_OPS_STATS" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application android:label="AppOpsXposed"
android:name=".AppOpsXposedApp"
android:allowBackup="true"
android:icon="@drawable/ic_launcher2"
android:theme="@style/DefaultTheme">
<meta-data android:name="xposedmodule" android:value="true" />
<meta-data android:name="xposedminversion" android:value="2.0*" />
<meta-data android:name="xposeddescription" android:value="@string/description" />
<!-- ->
<activity
android:name="at.jclehner.appopsxposed.DebugActivity"
android:label="AppOpsXposed">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!- -->
<activity
android:name=".LauncherActivity"
android:label="AppOpsXposed"
android:configChanges="orientation|screenSize" />
<activity
android:name=".AppOpsActivity"
android:label="AppOpsXposed">
<intent-filter>
<!-- The "Settings" app in AOSP 4.3 had this -->
<action android:name="android.settings.APP_OPS_SETTINGS" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".SettingsActivity"
android:label="AppOpsXposed"
android:configChanges="orientation|screenSize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="de.robv.android.xposed.category.MODULE_SETTINGS" />
</intent-filter>
</activity>
<activity
android:name=".LauncherActivity$HtcActivity2"
android:icon="@drawable/ic_appops_sense"
android:label="@string/app_ops_settings"
android:excludeFromRecents="true"
android:enabled="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.htc.settings.category.PLUGIN_ENTRY" />
</intent-filter>
<meta-data android:name="plugAnchorItem" android:value="apps"/>
<meta-data android:name="plugAnchorShift" android:value="0.0"/>
<meta-data android:name="plugLaunchType" android:value="activity"/>
<meta-data android:name="plugLaunchTarget" android:value="intent:#Intent;component=at.jclehner.appopsxposed/.AppOpsActivity;end"/>
</activity>
<!--
<activity
android:name=".LauncherActivity$HtcFragment"
android:icon="@drawable/ic_appops_sense"
android:label="@string/app_ops_settings"
android:excludeFromRecents="false"
android:enabled="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.htc.settings.category.PLUGIN_ENTRY" />
</intent-filter>
<meta-data android:name="plugAnchorItem" android:value="apps"/>
<meta-data android:name="plugAnchorShift" android:value="0.0"/>
<meta-data android:name="plugLaunchType" android:value="fragment"/>
<meta-data android:name="plugLaunchTarget" android:value="com.android.settings.applications.AppOpsSummary"/>
</activity>
-->
<activity-alias
android:enabled="true"
android:name=".LauncherActivity-Icon"
android:icon="@drawable/ic_launcher2"
android:label="AppOpsXposed"
android:targetActivity=".LauncherActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity-alias>
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="at.jclehner.appopsxposed.files"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/paths" />
</provider>
<receiver
android:name=".SystemEventReceiver"
android:exported="false">
<intent-filter>
<action android:name="android.intent.action.PACKAGE_ADDED" />
<action android:name="android.intent.action.PACKAGE_REPLACED" />
<data android:scheme="package" />
</intent-filter>
</receiver>
</application>
</manifest>