This project is a simple To-Do application built using Kotlin and SQLite for Android. The application allows users to add, view, and delete tasks. It stores tasks in a local SQLite database without the use of external dependencies like Room. This project demonstrates basic SQLite database operations in Android.
- Add Task: Allows the user to input and save tasks to a local SQLite database.
- View Tasks: Displays a list of all tasks stored in the database.
- Persistent Storage: Tasks are saved and persist even after the app is closed and reopened.
Before you begin, ensure you have the following installed:
- Android Studio (latest version)
- Kotlin (already integrated with Android Studio)
- Basic knowledge of Android development and SQLite database usage in Android