package vandy.mooc.utils; /** * Class that contains all the Constants required in our Video Upload * client App. */ public class Constants { /** * Define a constant for 1 MB. */ public static final long MEGA_BYTE = 1024 * 1024; /** * Maximum size of Video to be uploaded in MB. */ public static final long MAX_SIZE_MEGA_BYTE = 50 * MEGA_BYTE; public static final String CLIENT_ID = "mobile"; }