Tasks and other accounts

Hello,

Is it possible to add other nextcloud accounts on tasks and notes ?

I couldn’t find a way so I installed tasks.org but I really prefer the /e/ version.

Regain your privacy! Adopt /e/OS the deGoogled mobile OS and online servicesphone

1 Like

Edit :
I logged back on my Murena account (had stopped because of sync problens since the outage)
Even fhe murena account doesn’t appear in the tasks.
What shoukd I do ? Erasing the cache may erase the local tasks ?

Thanks for help !

(I don’t find how to edit a previous post :nerd_face:)

And please, does anyone know where I can find the tasks and notes locally on the phone , via the folder app or a pc ?
I don’t see any e.tasks or e.notes folder, and nothing under the nextcloud folder
Thanks !

internaly those are a sqlite dbs, you can get them either via adb root or adb backup. Tasks are caldav entries - so should be accessibla via murena.io if synced. If not, the path is:
/data/data/foundation.e.tasks/databases/tasks.db

2 Likes

Thank you tcecyk,
But where can I find the local tasks ? I mean those that are not linked to any account but local, only on the phone ?
The app is again freezing…(!?)

did you look into the sqlite file?

Yes, but I don’t see any foumdation.e.task folder…

it’s a bit cumbersome, as in - you’ll need to elevate to adb root - you can do this only on dev/community images. When you convert the sqlite to csv, comma is the separator when you open it in the likes of Excel:

~$ adb shell
FP3:/ $ stat /data/data/foundation.e.tasks/databases/tasks.db
stat: '/data/data/foundation.e.tasks/databases/tasks.db': Permission denied
1|FP3:/ $ ^D
~$ adb root
ADB Root access is disabled by system setting - enable in Settings -> System -> Developer options
~$ adb root
restarting adbd as root
~$ adb pull /data/data/foundation.e.tasks/databases/tasks.db
/data/data/foundation.e.tasks/databa.... 10.9 MB/s (241664 bytes in 0.021s)
~$ echo "select * from Tasks;" | sqlite3 -csv tasks.db > tasks.csv
1 Like