Android Room : LiveData callback of update insert?

Can i use LiveData to wrap Delete, Insert, Update calls? No, you can’t. I wrote an answer to the issue. The reason is, that LiveData is used to notify for changes. Insert, Update, Delete won’t trigger a change. It will return the deleted rows, the inserted ID or the affected rows. Even if it looks … Read more