CacheUtilsLibrary icon indicating copy to clipboard operation
CacheUtilsLibrary copied to clipboard

A simple Android utils library to write any type of data into cache files and read them later.

Results 1 CacheUtilsLibrary issues
Sort by recently updated
recently updated
newest added

I'm getting a `com.google.gson.internal.LinkedTreeMap cannot be cast to ` error when reading a HashMap from cache. Writing to file: ``` Map buses = new HashMap(); //after adding data CacheUtils.writeDataMapFile(CACHE_NAME, buses);...