Path of local notes #179
-
Where Are local notes stored? |
Beta Was this translation helpful? Give feedback.
Answered by
maelchiotti
Sep 3, 2024
Replies: 1 comment
-
Notes are stored using the isar database. I configured it to store its database file in the application's internal storage, which is provided by Android for all apps ( However, access to this directory is heavily restricted by Android, I'm pretty sure you can't access it without rooting your phone or using debugging via USB. Even if you do that, the database file is a binary file so it can't be used outside of the app. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
maelchiotti
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Notes are stored using the isar database. I configured it to store its database file in the application's internal storage, which is provided by Android for all apps (
data/user/0/com.maelchiotti.localmaterialnotes
).However, access to this directory is heavily restricted by Android, I'm pretty sure you can't access it without rooting your phone or using debugging via USB.
Even if you do that, the database file is a binary file so it can't be used outside of the app.