android-persistence icon indicating copy to clipboard operation
android-persistence copied to clipboard

Results 13 android-persistence issues
Sort by recently updated
recently updated
newest added

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. ![as1](https://user-images.githubusercontent.com/33009623/39369955-7b05ac3e-49f2-11e8-9ecf-9b030399b26d.jpg) 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.