From 4b95c809ad7c17eba87d5df6a56bcbc63b495bae Mon Sep 17 00:00:00 2001 From: Fahim Masud Choudhury Date: Wed, 30 Jul 2025 17:55:57 +0600 Subject: [PATCH] fix: resolve error in Tasks app This commit introduces Tasks support to the AccountManager by: - Adding a `tasks_model.xml` file defining various data kinds for tasks such as title, location, description, dates, priority, status, etc. - Referencing this `tasks_model.xml` in the `AndroidManifest.xml` within the EeloAccountAuthenticator service metadata. This allows the system to recognize the account as a source for Tasks. --- app/src/main/AndroidManifest.xml | 1 + app/src/main/res/xml/tasks_model.xml | 36 ++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 app/src/main/res/xml/tasks_model.xml diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 7f3af0812..0ccc568f8 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -336,6 +336,7 @@ + + + + + + + + + + + + + + + + + + + + -- GitLab