Add message flags for "replied to" and "forwarded"
* These will be required for EAS logo certification Change-Id: Iaa8c970878a319fac68b3533889e6774f9cd54f9
This commit is contained in:
parent
ae993bda32
commit
9279fc1b94
@ -714,6 +714,8 @@ public abstract class EmailContent {
|
||||
public static final int FLAG_SYNC_ADAPTER_MASK = 255 << FLAG_SYNC_ADAPTER_SHIFT;
|
||||
/** If set, the outgoing message should *not* include the quoted original message. */
|
||||
public static final int FLAG_NOT_INCLUDE_QUOTED_TEXT = 1 << 17;
|
||||
public static final int FLAG_REPLIED_TO = 1 << 18;
|
||||
public static final int FLAG_FORWARDED = 1 << 19;
|
||||
|
||||
public Message() {
|
||||
mBaseUri = CONTENT_URI;
|
||||
|
Loading…
Reference in New Issue
Block a user