forked from ChainsDD/Superuser
-
Notifications
You must be signed in to change notification settings - Fork 75
/
AndroidManifest.xml
73 lines (67 loc) · 3.02 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.noshufou.android.su"
android:versionCode="24"
android:versionName="2.3.6">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name="Su"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="AppListActivity" />
<activity android:name="LogActivity" />
<activity android:name="SuRequest"
android:label="@string/app_name_request"
android:excludeFromRecents="true"
android:noHistory="true"
android:theme="@style/RequestPanel"
android:taskAffinity="" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name="SuPreferences">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<receiver android:name="SuRequestReceiver">
<intent-filter>
<action android:name="com.noshufou.android.su.REQUEST" />
</intent-filter>
</receiver>
<receiver android:name="SuNotificationReceiver">
<intent-filter>
<action android:name="com.noshufou.android.su.NOTIFICATION" />
</intent-filter>
</receiver>
<receiver android:name="UninstallReceiver">
<intent-filter>
<action android:name="android.intent.action.PACKAGE_REMOVED" />
<data android:scheme="package" />
</intent-filter>
</receiver>
<receiver android:name="InstallReceiver">
<intent-filter>
<action android:name="android.intent.action.PACKAGE_ADDED" />
<data android:scheme="package" />
</intent-filter>
</receiver>
</application>
<uses-sdk android:targetSdkVersion="4" android:minSdkVersion="3"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="com.noshufou.android.su.RESPOND" />
<permission android:name="com.noshufou.android.su.RESPOND"
android:label="@string/permlab_respond"
android:description="@string/permdesc_respond"
android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
android:protectionLevel="signature" />
</manifest>