Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/s-gani/todoapp
- Owner: S-Gani
- Created: 2024-10-17T13:28:58.000Z (29 days ago)
- Default Branch: master
- Last Pushed: 2024-10-17T13:35:55.000Z (29 days ago)
- Last Synced: 2024-10-19T19:17:46.249Z (27 days ago)
- Topics: android, application, kotlin, sqlite, sqlitedatabase, todolist, xml
- Language: Kotlin
- Homepage:
- Size: 99.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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---