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