An android app built with Kotlin that uses Room Database to store the todos on user's device and uses Recycler View to display the todos.
To clone the repo run the following command from cmd/terminal:
git clone https://github.com/PlacementRush/Todo-List-App.git
OR you can download the zip file of this project.
Note:
- If you want to test the room database, remove
suspendkeyword from all the methods in theTodoDaointerface in theTodoDao.ktfile. Then run theTodoDatabaseTest.ktfile to test the Room Database. - Before running the application, ensure that the
suspendkeyword is added to all the methods in theTodoDaointerface except forgetAllTodos()method.