Back to project page ChitChat.
The source code is released under:
MIT License
If you think the Android project ChitChat listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.shivamb7.chitchat.workers; /* w w w . j a va2s . co m*/ import com.shivamb7.chitchat.R; public final class Constants { public static final String CLASS_MESSAGES = "Messages"; public static final String CLASS_TEXT_MESSAGES = "TextMessages"; public static final String SENDER_ID = "senderId"; public static final String USER_ID = "userId"; public static final String RECIPIENT_IDS = "recipientIds"; public static final String SENDER_NAME = "senderName"; public static final String FILE = "messageFile"; public static final String FILE_TYPE = "fileType"; public static final String TYPE_PICTURE = "picture"; public static final String TYPE_VIDEO = "video"; public static final String TYPE_TEXT = "text"; public static final String TEXT_CONTENTS = "textMessage"; public static final String TEXT_TYPE = "textType"; }