blob: 954e431434493c9b9a145a9e41b2e97fd3315020 (
plain) (
blame)
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
|
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.cyanogenmod.settings.device"
android:versionCode="1"
android:versionName="1.0"
android:sharedUserId="android.uid.system"
>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<uses-sdk
android:minSdkVersion="22"
android:targetSdkVersion="22" />
<application
android:allowBackup="true"
android:label="CMActions"
android:persistent="true"
android:icon="@mipmap/ic_launcher_settings"
android:theme="@android:style/Theme.Material.Settings" >
<receiver android:name="com.cyanogenmod.settings.device.BootCompletedReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
<!-- stub to ensure its loaded - DO NOT REMOVE -->
<activity android:name=".KeyHandler"/>
<activity
android:excludeFromRecents="true"
android:name="CMActions"
android:label="CMActions"
android:launchMode="singleInstance"
android:screenOrientation="portrait"
android:windowAnimationStyle="@null">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<activity
android:name=".TouchscreenGestureSettings"
android:label="@string/screen_gestures_panel_title">
<intent-filter>
<action android:name="com.cyanogenmod.action.LAUNCH_TOUCHSCREEN_GESTURE_SETTINGS" />
</intent-filter>
<meta-data
android:name="com.android.settings.title"
android:resource="@string/screen_gestures_panel_title"/>
<meta-data
android:name="com.android.settings.summary"
android:resource="@string/screen_gestures_panel_summary"/>
</activity>
</application>
</manifest>
|