Back to project page Emoji-ChatRoom.
The source code is released under:
Apache License
If you think the Android project Emoji-ChatRoom 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.emojicharroom.util; // ww w . ja v a 2s. c o m /** * @author Hongyi Yao (hyyao@umich.edu) * */ public class Config { // private static final String PACKAGE_PREFIX = // NetworkConsole.class.getPackage().getName(); // public static final String SEND_TEXT_ACTION = // PACKAGE_PREFIX + ".SEND_TEXT_ACTION"; // // public static final String TEXT_PAYLOAD = PACKAGE_PREFIX + ".TEXT_PAYLOAD"; public static final String SERVER_ADDR = "beluga.eecs.umich.edu"; public static final int SERVER_PORT = 32143; public static final int MSG_TEXT = 1; }