Back to project page SimpleReader.
The source code is released under:
Apache License
If you think the Android project SimpleReader listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * /* w ww.j a v a 2 s. co m*/ */ package com.dreamteam.app.commons; import java.io.File; import com.dreamteam.app.utils.FileUtils; /** * @author: zcloud * * @description: TODO * * @date: 2013/10/11 * */ public class AppConfig { //SD????? public static final String APP_ROOT_DIR = FileUtils.getSDRootPath() + File.separator + "SimpleReader"; public static final String APP_CACHE_DIR = APP_ROOT_DIR + File.separator + "cache"; public static final String APP_SECTION_DIR = APP_CACHE_DIR + File.separator + "sections"; public static final String APP_IMAGE_CACHE_DIR = APP_CACHE_DIR + File.separator + "images"; public static final String APP_IMAGE_DIR = APP_ROOT_DIR + File.separator + "images"; //??????? public static final String PREF_DEPRECATED = "pref_deprecated"; //?? public static final String UM_BASE_KEY = "com.dreamteam.reader"; public static final String SP_KEY_MAIN_BG = "SP_KEY_MAIN_BG"; }