A simple todo app with date pagination backed by firebase. It is built in compose and follows MVVM architecture, UDF pattern and Single Activity architecture. It uses firebase phone authentication.
- Firebase Phone Authentication in a clean architecture.
- Add/Update/Delete Task using firebase firestore.
- Pagination: Load task according to month.
![]() |
![]() |
![]() |
Kotlin: As the programming language.
Jetpack Compose: To build UI.
Jetpack Navigation: To navigate between screens.
Firebase Firestore: As the database.
Firebase Phone Auth: To authenticate
user using phone number.
Timber: For Logging.
maxkeppeler sheets : To create date picker dialog.
- Enter your phone number. It will open browser for captcha verification. After that, a verification will be sent to you phone number. Enter it and log in.
- Add new task using + button and start using the app.
- Create a firebase project.
- Extract SHA1 and SHA256 and add it in the firebase project SHA certificate fingerprints.
- Clone and open this project in AndroidStudio.
- Connect this project with the firebase project that was created in step 1.
- Create index for fields
userId
by Ascending order anddueDate
by Descending order in tasks collection in order to enable filters.
This app follows MVVM architecture, Unidirectional data flow (UDF) pattern and Single Activity architecture.
core
: Handles the backend of the app like authentication and database related work.ui
: Handles the user interface components.common
: Includes utility classes and helper functions used across the app.di
: Contains hilt modules.