use of com.octo.android.robospice.persistence.googlehttpclient.json.GsonObjectPersisterFactory in project robospice by stephanenicolas.
the class GsonGoogleHttpClientSpiceService method createCacheManager.
@Override
public CacheManager createCacheManager(Application application) throws CacheCreationException {
CacheManager cacheManager = new CacheManager();
cacheManager.addPersister(new GsonObjectPersisterFactory(application));
return cacheManager;
}
Aggregations