aboutsummaryrefslogtreecommitdiff
path: root/cmactions/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'cmactions/AndroidManifest.xml')
-rw-r--r--cmactions/AndroidManifest.xml59
1 files changed, 59 insertions, 0 deletions
diff --git a/cmactions/AndroidManifest.xml b/cmactions/AndroidManifest.xml
new file mode 100644
index 0000000..9dd3bd2
--- /dev/null
+++ b/cmactions/AndroidManifest.xml
@@ -0,0 +1,59 @@
+<?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" />
+
+ <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>