summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorXiaojing Zhang <zhangx@codeaurora.org>2015-10-20 16:54:51 +0800
committerXiaojing Zhang <zhangx@codeaurora.org>2015-10-20 16:59:54 +0800
commit834aaac252177132141876bdcc86f014f4f946be (patch)
treec32a153011272d2d31a5401d177d81e04c627e0a /AndroidManifest.xml
parentd2dfb8d32fcdad9b39c72c0a9ed13b0a098e24ca (diff)
parent3d35c546847e71d56848ff6c43b956cfdd9ba8a7 (diff)
downloadpackages_apps_Contacts-834aaac252177132141876bdcc86f014f4f946be.tar.gz
packages_apps_Contacts-834aaac252177132141876bdcc86f014f4f946be.tar.bz2
packages_apps_Contacts-834aaac252177132141876bdcc86f014f4f946be.zip
Merge remote-tracking branch 'remotes/quic/ui_dev_2.0' into HEAD
Change-Id: I3c8b98d0dc79e5f2d64cd0d882a54b7d9684fd52
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml43
1 files changed, 43 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index d86d69bcf..1f13c0465 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -40,6 +40,8 @@
<uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/>
+ <uses-permission android:name="com.android.firewall.READ_GRAVITY"/>
+ <uses-permission android:name="com.android.firewall.WRITE_GRAVITY"/>
<!-- Following used for QuickContacts -->
<uses-permission android:name="android.permission.READ_CALL_LOG" />
<uses-permission android:name="android.permission.READ_SMS" />
@@ -209,6 +211,11 @@
android:label="@string/activity_title_contacts_filter"
android:theme="@style/ContactListFilterTheme" />
+ <activity
+ android:name=".activities.MemoryStatusActivity"
+ android:label="@string/memory_status_title"
+ android:theme="@style/ContactListFilterTheme" />
+
<!-- Used to select display and sync groups -->
<activity
android:name=".common.list.CustomContactListFilterActivity"
@@ -448,6 +455,42 @@
android:label="@string/launcherActivityLabel"
android:theme="@style/BackgroundOnlyTheme" />
+ <activity
+ android:name=".activities.MultiPickContactActivity"
+ android:windowSoftInputMode="stateHidden|adjustResize"
+ android:screenOrientation="nosensor"
+ android:theme="@android:style/Theme.Holo.Light"
+ android:configChanges="orientation|keyboardHidden|layoutDirection">
+ <intent-filter>
+ <action android:name="com.android.contacts.action.MULTI_PICK" />
+ <category android:name="android.intent.category.DEFAULT" />
+ <data android:mimeType="vnd.android.cursor.dir/person"/>
+ <data android:mimeType="vnd.android.cursor.dir/contact"/>
+ <data android:mimeType="vnd.android.cursor.dir/raw_contact"/>
+ </intent-filter>
+ <intent-filter>
+ <action android:name="android.intent.action.DELETE" />
+ <category android:name="android.intent.category.DEFAULT" />
+ <data android:mimeType="vnd.android.cursor.dir/person"/>
+ <data android:mimeType="vnd.android.cursor.dir/contact"/>
+ <data android:mimeType="vnd.android.cursor.dir/raw_contact"/>
+ </intent-filter>
+ <intent-filter>
+ <action android:name="com.android.contacts.action.MULTI_PICK_CALL"/>
+ <category android:name="android.intent.category.DEFAULT"/>
+ </intent-filter>
+ <intent-filter>
+ <action android:name="com.android.contacts.action.MULTI_PICK_EMAIL"/>
+ <category android:name="android.intent.category.DEFAULT"/>
+ <data android:mimeType="vnd.android.cursor.dir/person"/>
+ <data android:mimeType="vnd.android.cursor.dir/contact"/>
+ <data android:mimeType="vnd.android.cursor.dir/raw_contact"/>
+ </intent-filter>
+ <intent-filter>
+ <action android:name="com.android.contacts.action.MULTI_PICK_SIM"/>
+ <category android:name="android.intent.category.DEFAULT"/>
+ </intent-filter>
+ </activity>
<service
android:name=".common.vcard.VCardService"
android:exported="false" />