Taskify

Taskify is a mobile application used to create and schedule tasks in your TODO list. It creates an alarm when your scheduled task time arrives. It is built with the MVVM pattern and the latest Jetpack components.

The main aim to build this app is to learn the following topic:

  • Dependency injection with Dagger-Hilt
  • MVVM architecture
  • Room database

Libraries

  • Kotlin – Kotlin is a programming language that can run on JVM. Google has announced Kotlin as one of its officially supported programming languages in Android Studio; and the Android community is migrating at a pace from Java to Kotlin
  • Navigation Components – Helps you implement navigation, from simple button clicks to more complex patterns, such as app bars and the navigation drawer.
  • Viewmodel -The ViewModel class is designed to store and manage UI-related data in a lifecycle conscious way
  • LiveData – A lifecycle-aware data holder with the observer pattern
  • Kotlin Coroutines – A concurrency design pattern that you can use on Android to simplify code that executes asynchronously
  • Hilt-Dagger – Hilt is a dependency injection library for Android that reduces the boilerplate of doing manual dependency injection in your project. Doing manual dependency injection requires you to construct every class and its dependencies by hand, and to use containers to reuse and manage dependencies.
  • MVVM – MVVM stands for Model, View, ViewModel. Model: This holds the data of the application. It cannot directly talk to the View. Generally, it’s recommended to expose the data to the ViewModel through Observables.
  • Room Persistance library – The Room persistence library provides an abstraction layer over SQLite to allow for more robust database access while harnessing the full power of SQLite.

Demo

Support

  • Found this project useful ❤️? Support by clicking the ⭐️ button on the upper right of this page. ✌
  • Feel free to contribute in any way to the project from typos in docs to code review are all welcome.

GitHub

View Github