forked from CyanogenMod/android_packages_apps_Superuser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAndroidManifest.xml
53 lines (49 loc) · 2.21 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.noshufou.android.su"
android:versionCode="12"
android:versionName="2.2.2">
<application android:icon="@drawable/icon" android:label="@string/app_name_perms">
<activity android:name="Su"
android:label="@string/app_name_perms"
android:screenOrientation="nosensor">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="SuRequest"
android:label="@string/app_name_request"
android:excludeFromRecents="true"
android:theme="@android:style/Theme.NoDisplay" >
<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="UninstallReceiver">
<intent-filter>
<action android:name="android.intent.action.PACKAGE_REMOVED" />
<data android:scheme="package" />
</intent-filter>
</receiver>
</application>
<uses-sdk android:targetSdkVersion="4" android:minSdkVersion="3"/>
<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>