Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 965 Bytes

File metadata and controls

16 lines (10 loc) · 965 Bytes

RealmArchComponentsRecipesApp

Simple Recipes App that uses Realm w/ Android Architecture Components

Screenshots

Recipes for your favoriate Android Sweets!.

Project Layout

Realm Arch Compoenents Recipes App is laid out in a series of modules, each runnable on their own. Each of these teach a different technique and are runnable on their own. The modules build on each other in the order defined below.

For example, the DAO lesson module, has the basics of using Realm with DAOs and nothing else. The next module, live-data-lesson contains everything from the dao-lesson plus it introduces the LiveData concept.

Modules

  • dao-lesson - Shows an example of how to use DAOs with Realm.
  • livedata-lesson - Shows how to expose RealmResults as LiveData and uses LiveData Transformations to provide observers with data that is Persistence Layer & Domain Model agnostic and Read only (live but not mutable by the observer).