diff options
author | Chiao Cheng <chiaocheng@google.com> | 2012-10-29 18:32:25 -0700 |
---|---|---|
committer | Chiao Cheng <chiaocheng@google.com> | 2012-10-29 18:32:25 -0700 |
commit | e1d64777a9a2ecf7ca0d592e5d5d98dc34ff1ec0 (patch) | |
tree | 834514eb0b9ed3a20c88909e87bda2c1a1fc59d5 | |
parent | 2fe0d389de4224f8ec7373af2441f4ef438ecb4e (diff) |
Adding missing menu activities to manifest.
The AccountFilterActivity and CustomContactListFilterActivity are needed by
the "Contacts to display" menu option.
Bug: 6993891
Change-Id: I07aefb345bd6a383017a32facbbc5508ff945073
-rw-r--r-- | AndroidManifest.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index baa14fc52..7c39ee5db 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -163,6 +163,18 @@ android:exported="true" /> + <!-- Used to filter contacts list by account --> + <activity + android:name="com.android.contacts.list.AccountFilterActivity" + android:label="@string/activity_title_contacts_filter" + android:theme="@style/ContactListFilterTheme"/> + + <!-- Used to select display and sync groups --> + <activity + android:name="com.android.contacts.list.CustomContactListFilterActivity" + android:label="@string/custom_list_filter" + android:theme="@style/ContactListFilterTheme"/> + <receiver android:name=".calllog.CallLogReceiver" android:enabled="@*android:bool/config_voice_capable"> <intent-filter> |