Open Notes is a straightforward note-taking app: a searchable list of notes, a note editor with title and content, and per-note styling options, all built with Jetpack Compose and backed by a Room/SQLite database.
On Winedroid the core notes workflow works end-to-end: the list renders, creating a new note through the editor writes it to the on-device database, opening an existing note from the list loads its saved title and content back into the editor, and deleting a note (long-press to select, then confirm in the delete dialog) removes it from the database for real, with the app's own confirmation Snackbar appearing afterward.
Application Details
| Package | com.opennotes |
| Version | 1.4.0 (14) |
| License | |
| Source | github.com/Fandroid745/Open-notes |
| Category | Productivity |
| Native libs | None required (bundled Jetpack shims only) |
| Min SDK | 26 |
| Target SDK | 36 |
| Votes | |
| Latest Rating | |
| Winedroid Version Tested | |
| Maintainers |
App launches into its real Compose UI. Verified working: the notes list, creating a note (typed title/content persists to SQLite), opening an existing note from the list (reloads its saved content into the editor), and deleting a note via long-press-to-select and the real delete-confirmation dialog (the row is actually removed from the database). Other screens and settings were not exercised in this pass.
Only the create/list/open/delete flow has been verified so far; search, categories, per-note styling, and reminders have not been tested yet.
To delete a note, long-press it in the list to enter selection mode, then tap the trash icon and confirm in the dialog that appears.
No comments yet.

