package cm4mmupdater.customization; public class Customization { //The String from the build.prop before the Version public static final String RO_MOD_START_STRING = "CyanogenMod-"; //Minimum Supported Version (So the User has to install google apps and so before) public static final String MIN_SUPPORTED_VERSION_STRING = RO_MOD_START_STRING + "0.01"; //Updateinstructions for the min supported Version public static final String UPDATE_INSTRUCTIONS_URL = ""; //DB filename public static final String DATABASE_FILE = "cm4mmupdater.db"; //DownloadDirectory public static final String DOWNLOAD_DIR = "OpenRecovery/updates"; //MUST be the first package name. public static final String PACKAGE_FIRST_NAME = "cm4mmupdater"; //Filename for Instance save public static final String STORED_STATE_FILENAME = "cm4mmupdater.state"; //Android Board type public static final String BOARD = "ro.product.board"; //Name of the Current Rom public static final String SYS_PROP_MOD_VERSION = "ro.modversion"; //Screenshotsupport? public static final Boolean Screenshotsupport = true; }