Customization.java :  » UnTagged » openeclair-updater » openeclairupdaterapp » customization » Android Open Source

Android Open Source » UnTagged » openeclair updater 
openeclair updater » openeclairupdaterapp » customization » Customization.java
package openeclairupdaterapp.customization;

public class Customization
{
  //The String from the build.prop before the Version
  public static final String RO_MOD_START_STRING = "OpenEclair-";
  //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 + "1.0";
  //Updateinstructions for the min supported Version
  public static final String UPDATE_INSTRUCTIONS_URL = "http://wiki.cyanogenmod.com/index.php/Upgrading_From_Older_CyanogenMod_or_other_rooted_ROMs";
  //Data Firectory on SDCard
  public static final String EXTERNAL_DATA_DIRECTORY = "openeclairupdater/data";
  //MUST be the first package name.
  public static final String PACKAGE_FIRST_NAME = "openeclairupdaterapp";
  //Filename for Instance save
  public static final String STORED_STATE_FILENAME = "openeclairupdater.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;
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.