package com.lh.fly.common;
import com.lh.fly.App;
import java.io.File;
public class Config {
public static final int SIZE_1024 = 1024;
// 缓存
public static final String CACHE_FOLDER = "responses";
public static final String CACHE_DIR =
App.getAppContext().getCacheDir().getAbsolutePath() + File.separator + CACHE_FOLDER;
public static final int CACHE_SIZE = 10 * SIZE_1024 * SIZE_1024; // 10 MiB
}