forked from wanam/XTouchWiz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
85 lines (76 loc) · 3.49 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="ma.wanam.xtouchwiz"
android:versionCode="112"
android:versionName="1.1.2" >
<uses-sdk
android:minSdkVersion="23"
android:targetSdkVersion="23" />
<uses-permission android:name="android.permission.ACCESS_SUPERUSER" />
<uses-permission android:name="android.permission.EXPAND_STATUS_BAR" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application
android:name="ma.wanam.xtouchwiz.MainApplication"
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@android:style/Theme.Material" >
<activity
android:name="ma.wanam.xtouchwiz.XTouchWizActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<meta-data
android:name="xposedmodule"
android:value="true" />
<meta-data
android:name="xposedminversion"
android:value="61+" />
<meta-data
android:name="xposeddescription"
android:value="Made for Samsung TouchWiz Android 6.0+ Roms by Wanam" />
<receiver
android:name="ma.wanam.xtouchwiz.receivers.WanamRebootReceiver"
android:exported="false" >
<intent-filter android:priority="1000" >
<action android:name="ma.wanam.xposed.action.REBOOT_DEVICE" />
<action android:name="ma.wanam.xposed.action.SOFT_REBOOT_DEVICE" />
<action android:name="ma.wanam.xposed.action.REBOOT_OPTIONS" />
</intent-filter>
</receiver>
<receiver
android:name="ma.wanam.xtouchwiz.receivers.WanamToastReceiver"
android:exported="false" >
<intent-filter>
<action android:name="ma.wanam.xposed.action.SHOW_TOAST" />
</intent-filter>
</receiver>
<receiver
android:name="ma.wanam.xtouchwiz.receivers.WanamRebootReceiver"
android:exported="false" >
<intent-filter android:priority="1000" >
<action android:name="ma.wanam.xposed.action.REBOOT_DEVICE" />
<action android:name="ma.wanam.xposed.action.SOFT_REBOOT_DEVICE" />
<action android:name="ma.wanam.xposed.action.REBOOT_OPTIONS" />
</intent-filter>
</receiver>
<activity
android:name="ma.wanam.xtouchwiz.activities.WanamRebootActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
android:label="@string/rebooting_"
android:theme="@android:style/Theme.DeviceDefault.Dialog" >
</activity>
<service
android:name="ma.wanam.xtouchwiz.services.ScreenRecordingService"
android:exported="false" >
<intent-filter>
<action android:name="xtouchwiz.intent.action.RECORDING_START" />
</intent-filter>
</service>
</application>
</manifest>