Skip to content

Instantly share code, notes, and snippets.

@arthtilva
Created September 3, 2016 05:54
Show Gist options
  • Save arthtilva/c28e7b2e5b56fa8c8775e101a466a523 to your computer and use it in GitHub Desktop.
Save arthtilva/c28e7b2e5b56fa8c8775e101a466a523 to your computer and use it in GitHub Desktop.
Constants that are frequently used in all projects
public class Constants {
public static final String URL = "http://404server.com";
public static final String USER_IMEI = "USER_IMEI";
public static final String USER_FCM = "USER_FCM";
public static final String USER_ID = "USER_ID";
public static final String USER_EMAIL = "USER_EMAIL";
public static final String USER_MOBILE = "USER_MOBILE";
public static final String USER_NAME = "USER_NAME";
public static final String USER_FIRST_NAME = "USER_FIRST_NAME";
public static final String USER_LAST_NAME = "USER_LAST_NAME";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment