Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/s-gani/todoapp

Simple To-Do application built using Kotlin and SQLite for Android
https://github.com/s-gani/todoapp

android application kotlin sqlite sqlitedatabase todolist xml

Last synced: 21 days ago
JSON representation

Simple To-Do application built using Kotlin and SQLite for Android

Awesome Lists containing this project

README

        

# To-Do App with SQLite in Kotlin

## Project Overview

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.

---

## Features

- **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.

---

## Prerequisites

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

---