package skyseraph.android.util;
/**
* @Title : Constant.java
* @Package : tcl.nfc.tv.util
* @ClassName : Constant
* @Description : TODO
* @author : skyseraph00@163.com
* @date : 2013-5-20 上午9:31:10
* @version : V1.0
*/
public class MyConstant {
public static final int ERROR = 0;
public static final int SUCCESS = 1;
public static final String TAG = "skyseraph/nfc";
public static final boolean isExit = false;
// LogUtil
public static boolean isDebug = true;
public static boolean isVerbose = true;
public static boolean isInformation = true;
public static boolean isWarning = true;
public static boolean isError = true;
}