Firestore Recycler not showing any results on app screen with no errors

后端 未结 2 1969
夕颜
夕颜 2021-01-27 11:40

I want to make a chore app using a firebase that has 2 inputs: Description and class. Whenever I run the app, the screen that shows is blank (except for the header) There is no

2条回答
  •  滥情空心
    2021-01-27 11:56

    Add @Keep to your Chores class to prevent serialization problems:

    import androidx.annotation.Keep;
    
    @Keep
    class Chores {
    .
    .
    }
    

提交回复
热议问题