ylliX - Online Advertising Network
Persistence as the single source of truth (droidcon Berlin)

Persistence as the single source of truth (droidcon Berlin)


Simple is better than complex. Complex is better than complicated.

In the world of Android, where all sources of information and user interactions are asynchronous, UI state can become hard to reason about, especially in large apps. This is not only difficult to maintain but also increases complexity with the addition of every new feature.

This talk explores the idea of โ€œpersistence as the single source of truthโ€ as a way to simplify state management, where persistent storage becomes the source for all data changes, and the UI is reduced to a reactive representation of persisted data. This forces the flow of data to be unidirectional which makes it easy to follow. The pattern is architecture agnostic and can be used in any MV-anything.

It also talks about other benefits of persistence where screens can stop exchanging data through serialized Bundles, get state restoration across Activity recreations for free, and deliver offline support out-of-the-box. UI interactions receive immediate feedback and the user is never forced to wait.



Source link

Leave a Reply

Your email address will not be published. Required fields are marked *