6
Retrofit con OKHttp può utilizzare i dati della cache quando è offline
Sto cercando di utilizzare Retrofit e OKHttp per memorizzare nella cache le risposte HTTP. Ho seguito questa sintesi e ho finito con questo codice: File httpCacheDirectory = new File(context.getCacheDir(), "responses"); HttpResponseCache httpResponseCache = null; try { httpResponseCache = new HttpResponseCache(httpCacheDirectory, 10 * 1024 * 1024); } catch (IOException e) { …