use of com.octo.android.robospice.persistence.binary.InFileBitmapObjectPersister in project robospice by stephanenicolas.
the class OkHttpBitmapSpiceService method createCacheManager.
@Override
public CacheManager createCacheManager(Application application) throws CacheCreationException {
CacheManager cacheManager = new CacheManager();
InFileBitmapObjectPersister inFileBitmapObjectPersister = new InFileBitmapObjectPersister(application);
cacheManager.addPersister(inFileBitmapObjectPersister);
return cacheManager;
}
use of com.octo.android.robospice.persistence.binary.InFileBitmapObjectPersister in project robospice by stephanenicolas.
the class BitmapSpiceService method createCacheManager.
@Override
public CacheManager createCacheManager(Application application) throws CacheCreationException {
CacheManager cacheManager = new CacheManager();
InFileBitmapObjectPersister inFileBitmapObjectPersister = new InFileBitmapObjectPersister(application);
cacheManager.addPersister(inFileBitmapObjectPersister);
return cacheManager;
}
Aggregations