Back to project page android-mvc-framework.
The source code is released under:
Apache License
If you think the Android project android-mvc-framework listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.android_mvc.sample_project.common; // w w w.j a v a2s .c o m import com.android_mvc.framework.common.AbstractAppSettings; /** * ???????????????????????????? * ????????????????????????????????????????????????????????????????????? * @author id:language_and_engineering * */ public class AppSettings extends AbstractAppSettings { // NOTE: FW????????????????????????????getter????????????????????????? // ??????????????????????????????????????????? // ?????????static????????????????????????????????static??????????????????????????????????????? // ????????????????????????????????????????????????????????? // @see http://www.ne.jp/asahi/hishidama/home/tech/java/class_use.html#h3_field // ???????FW??????????????????????????????????????????????????getter????????????? // TODO: ??????????????????enum?????????? /** * FW???????????????????? */ protected void initForFW() { // --------------- ???????????????????? ------------------ // ??????????????????????? APP_TAG_FOR_LOG = "android-mvc-sample"; // RDB?????????? DB_NAME = "android_mvc_sample"; // RDB??????? DB_FULLPATH = "/data/data/com.android_mvc.sample_project/databases/" + DB_NAME; // --------------- ?????????? ------------------ // ?????????????????? DEBUGGING_FLAG = true; // ??????????????????????????????????????????????????????? // USB??????????????????????FW????????????????????????????????????????? FORGET_PREFS_ON_DEBUG = true; // ????????????????????????????RDB???????????????????? // USB???????????????????????????? FORGET_RDB_ON_DEBUG = true; } }