android-persistence
android-persistence copied to clipboard
This codelab contained basics regarding local data persistence, but didn't add either references to remote data fetching, nor the questionable Repository class. Deprecating it is a mistake. For example, the...
Downloaded the source and compiled/updated. the "Step 1" configuration is not available to run. The only config available is "app" which doesn't run.  How can one fix this? Android...
Can I support auto increment fields? I don't find an annotation that supports this property in your library. thaks for your reply.
showBooksInUi(books, mBooksTextView); should be showBooksInUi(books); as mBooksTextView is a class var and it is initialised before subscribeUiBooks() is called onCreate()
Updated Gradle version for 4.4; Gradle plugin for 3.1.4; BuildTools for 27; Changed compile and all names gradle for implementation
http://prntscr.com/kisz0p This one is not about persistence exactly - I've seen this on other codelabs also. More like a "feature" for everywhere on site. Whenever you move mouse it animates...
The code snippet for `fetchData()` contains the call `mDb.userModel().loadAllUsers()` instead of `mDb.userModel().findUsersYoungerThan(35)` as in the provided project. That makes the sentence about an "impostor" in the sentence that follows confusing...
https://codelabs.developers.google.com/codelabs/android-persistence/#6 `@DAO` should be `@Dao`
https://codelabs.developers.google.com/codelabs/android-persistence/#5 The class "BooksBorrowedByUserViewModel" describe in the documentation should inherited from AndroidViewModel and not from ViewModel.