Messaging: Implement per conversation channels. Update API level to 28.
* Get rid of in-app settings for notifications, replaced by channels features * Remove all the notification plumbing and dead code Test: m, manual Signed-off-by: Luca Stefani <luca.stefani.ge1@gmail.com> Signed-off-by: Joey <joey@lineageos.org> Signed-off-by: Danny Baumann <dannybaumann@web.de> Signed-off-by: Arne Coucheron <arco68@gmail.com> Signed-off-by: Lyubo <lyubodzhamov@gmail.com> Change-Id: Idb39ca32751d40b3376934775d2119dd6cc7e297
This commit is contained in:
@@ -122,7 +122,6 @@
|
||||
<color name="notification_subject_color">#99aaaaaa</color>
|
||||
|
||||
<color name="participant_list_text_primary">#4d4d4d</color>
|
||||
<color name="participant_list_text_secondary">#6d6d6d</color>
|
||||
<color name="people_and_options_header_text">#6d6d6d</color>
|
||||
<color name="people_and_options_list_divider">#cccccc</color>
|
||||
|
||||
|
||||
@@ -21,8 +21,7 @@
|
||||
<string name="notifications_category_pref_key" translatable="false">notifications_category</string>
|
||||
<string name="mms_messaging_category_pref_key" translatable="false">mms_messaging_category</string>
|
||||
<string name="advanced_category_pref_key" translatable="false">advanced_category</string>
|
||||
<string name="notifications_enabled_pref_key" translatable="false">notifications_enabled</string>
|
||||
<bool name="notifications_enabled_pref_default" translatable="false">true</bool>
|
||||
<string name="notifications_pref_key" translatable="false">notifications_enabled</string>
|
||||
<string name="notification_sound_pref_key" translatable="false">notification_sound</string>
|
||||
<string name="notification_vibration_pref_key" translatable="false">notification_vibration</string>
|
||||
<bool name="notification_vibration_pref_default" translatable="false">true</bool>
|
||||
|
||||
@@ -34,7 +34,6 @@
|
||||
<dimen name="conversation_list_contact_icon_size">56dp</dimen>
|
||||
<dimen name="conversation_message_contact_icon_size">42dp</dimen>
|
||||
<dimen name="conversation_message_photo_min_size">96dp</dimen>
|
||||
<dimen name="conversation_list_notification_bell_padding">4dp</dimen>
|
||||
<dimen name="conversation_list_empty_text_bottom_margin">30dp</dimen>
|
||||
<dimen name="blocked_participant_list_item_view_padding">16dp</dimen>
|
||||
|
||||
@@ -109,7 +108,6 @@
|
||||
<dimen name="progress_indicator_default_stroke_width">2dp</dimen>
|
||||
<dimen name="progress_indicator_default_radius">12dp</dimen>
|
||||
<dimen name="participant_list_text_size">18sp</dimen>
|
||||
<dimen name="participant_list_detail_text_size">14sp</dimen>
|
||||
<dimen name="people_and_options_header_text_size">16sp</dimen>
|
||||
<dimen name="image_attachment_fallback_width">240dp</dimen>
|
||||
<dimen name="image_attachment_fallback_height">240dp</dimen>
|
||||
|
||||
@@ -257,10 +257,6 @@
|
||||
<string name="action_archive">Archive</string>
|
||||
<!-- Action menu title for unarchiving selected conversations in conversation list -->
|
||||
<string name="action_unarchive">Unarchive</string>
|
||||
<!-- Action menu title for turning off notification for the selected conversations in conversation list -->
|
||||
<string name="action_notification_off">Turn off notifications</string>
|
||||
<!-- Action menu title for turning on notification for the selected conversations in conversation list -->
|
||||
<string name="action_notification_on">Turn on notifications</string>
|
||||
<!-- Action menu title for adding the contacts for the selected conversations in conversation list -->
|
||||
<string name="action_add_contact">Add contact</string>
|
||||
<!-- Action menu title for downloading failed message selected in conversation -->
|
||||
@@ -440,13 +436,9 @@
|
||||
<!-- Preference category: Debug -->
|
||||
<string name="debug_category_pref_title">Debug</string>
|
||||
<!-- Title for the preference for whether or to notify the user of new messages -->
|
||||
<string name="notifications_enabled_pref_title">Notifications</string>
|
||||
<string name="notifications_pref_title">Notifications</string>
|
||||
<!-- Title for the notification sound preference -->
|
||||
<string name="notification_sound_pref_title">Sound</string>
|
||||
<!-- What to display in the settings screen for Ringtone when the user chooses "silent" [CHAR LIMIT=100]-->
|
||||
<string name="silent_ringtone">Silent</string>
|
||||
<!-- Title for the preference for whether or not to vibrate with notifications -->
|
||||
<string name="notification_vibrate_pref_title">Vibrate</string>
|
||||
<string name="blocked_pref_title">Blocked</string>
|
||||
<!-- Title for the preference for whether or not to request/show delivery reports for SMS -->
|
||||
<string name="delivery_reports_pref_title">SMS delivery reports</string>
|
||||
@@ -982,4 +974,7 @@
|
||||
|
||||
<!-- When making a call to emergency numbers, show this toast -->
|
||||
<string name="disallow_emergency_call">Can\'t make a voice call to emergency services here.</string>
|
||||
|
||||
<!-- Notification channel -->
|
||||
<string name="notification_channel_messages_title">Messages</string>
|
||||
</resources>
|
||||
|
||||
@@ -291,10 +291,6 @@
|
||||
<item name="android:textColor">@color/conversation_list_name</item>
|
||||
</style>
|
||||
|
||||
<style name="ConversationListNotificationBellPaddingStyle">
|
||||
<item name="android:paddingRight">@dimen/conversation_list_notification_bell_padding</item>
|
||||
</style>
|
||||
|
||||
<style name="ComposeMessageViewFrameLayoutStyle">
|
||||
<item name="android:paddingRight">@dimen/compose_message_send_button_padding_right</item>
|
||||
</style>
|
||||
@@ -347,12 +343,6 @@
|
||||
<item name="android:paddingRight">@dimen/copy_contact_dialog_right_padding</item>
|
||||
</style>
|
||||
|
||||
<style name="ParticipantListItemDetail">
|
||||
<item name="android:textSize">@dimen/participant_list_detail_text_size</item>
|
||||
<item name="android:textColor">@color/participant_list_text_secondary</item>
|
||||
<item name="android:background">@null</item>
|
||||
</style>
|
||||
|
||||
<style name="PeopleListItemViewStyle">
|
||||
<item name="android:paddingLeft">16dp</item>
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user