LiveData List doesn't update when updating database
问题 I'm currently refactoring legacy code to use Android Architecture Components and set up a room db and volley requests within a kind of repository pattern. So the presentation/domain layer asks the repository to get LiveData-Objects to observe or tell him to synchronize with the server, after which old db entries are deleted and all current ones refetched from the server. I've written tests for the synchronization part, so I'm sure, that the objects get fetched and inserted to the database