/* * Copyright 2016. SHENQINCI(沈钦赐)<dev@qinc.me> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package ren.qinc.markdowneditors; /** * 相关配置(后续用到) * Created by 沈钦赐 on 16/1/16. */ public class AppConfig { // //==================缓存文件相关================== // // 设置文件sharedPreference的文件名字 // public static String SETTING_FILE_NAME = "setting_file"; // // //全局变量缓存目录,一般不删除 // public static String GLOBA_CACHE_NAME = "globa_file"; // // //文件缓存(程序缓存数据保存在这里,可以删除) // public static String FILE_CACHE = "cacle_file"; // // //数据库保存的文件 // public static String DB_NAME = "qinc.db"; // // //null:全部打印,不然{1,2}就打印1和2为flag的api请求 // public static final int[] SHOW_LOG = null; }