summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authoremancebo <emancebo@cyngn.com>2014-11-12 17:11:34 -0800
committerGerrit Code Review <gerrit@cyanogenmod.org>2016-01-29 11:45:18 -0800
commit005a261a17a838974290d9c13738242c0de3bb07 (patch)
treedfac0e96ed317f20601cb569f695ad968827dcdc /AndroidManifest.xml
parent7f5fbb72ace65139fddf91131305cefe29a790f4 (diff)
downloadpackages_apps_Messaging-005a261a17a838974290d9c13738242c0de3bb07.zip
packages_apps_Messaging-005a261a17a838974290d9c13738242c0de3bb07.tar.gz
packages_apps_Messaging-005a261a17a838974290d9c13738242c0de3bb07.tar.bz2
Messaging: Port of quick message from MMS
Issue-id: CYNGNOS-1581 Change-Id: I5e6ac4f47e3f95cc8ee734ee5aef3de6d7c5fcb4
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml21
1 files changed, 19 insertions, 2 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 3266bd2..17e22fe 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -51,8 +51,6 @@
<uses-permission android:name="android.permission.READ_PHONE_BLACKLIST" />
<uses-permission android:name="android.permission.CHANGE_PHONE_BLACKLIST" />
-
-
<!-- Optional features -->
<uses-feature android:name="android.hardware.camera" android:required="false" />
<uses-feature android:name="android.hardware.camera.front" android:required="false" />
@@ -524,6 +522,25 @@
</activity>
<service android:name="android.support.v7.mms.MmsService"/>
+
+ <!-- QuickMessage support -->
+ <!-- This is the "QuickMessage" panel, which has special
+ launch behaviour. We clear its task affinity, so it will not
+ be associated with the main messaging task and if launched
+ from a notification will not bring the rest of the messaging app
+ to the foreground.We exclude from recent apps since this is accessible
+ through a notification when appropriate. -->
+ <activity
+ android:name="com.cyanogenmod.messaging.quickmessage.QuickMessagePopup"
+ android:theme="@style/BugleTheme.QMPopUp"
+ android:configChanges="orientation|screenSize"
+ android:launchMode="singleTop"
+ android:taskAffinity=""
+ android:excludeFromRecents="true"
+ android:exported="true" />
+
+ <receiver android:name="com.cyanogenmod.messaging.quickmessage.ClearAllReceiver" />
+
</application>
</manifest>