1) When sending an SMS or MMS to multiple recipients, only show one
ConversationItem, but provide statistics on the number of recipients
delivered to.
2) Still break up the messages for secure and insecure messages.
<stringname="PlayStoreListing">TextSecure is a security enhanced text messaging application that serves as a full replacement for the default text messaging application. Messages to other TextSecure users are encrypted over the air, and all text messages are stored in an encrypted database on the device. If your phone is lost or stolen, your messages will be safe, and communication with other TextSecure users can\'t be monitored over the air.</string>
String[]projection={"_id","body","type","address","subject","normalized_date AS date","m_type","msg_box","transport_type","COUNT(_id) AS group_size",mmsGroupSentCount+" AS mms_group_sent_count",mmsGroupSentFailedCount+" AS mms_group_sent_failed_count",smsGroupSentCount+" AS sms_group_sent_count",smsGroupSentFailedCount+" AS sms_group_sent_failed_count",smsCaseSecurity+" AS sms_collate",mmsCaseSecurity+" AS mms_collate"};
String[]mmsProjection={"date * 1000 AS normalized_date","_id","body","read","thread_id","type","address","subject","date","m_type","msg_box","transport_type"};
String[]smsProjection={"date * 1 AS normalized_date","_id","body","read","thread_id","type","address","subject","date","m_type","msg_box","transport_type"};
@ -110,7 +162,7 @@ public class MmsSmsDatabase extends Database {