From 5a8c63b336303a22f1e5f3598a961bc2ac21c7b1 Mon Sep 17 00:00:00 2001 From: Peter Stone Date: Mon, 13 Jul 2026 16:50:20 +0000 Subject: fix(widget): give popup activities distinct taskAffinity TaskDetailActivity, QuickAddActivity, and EventDetailActivity shared the app's default task affinity with SettingsActivity. FLAG_ACTIVITY_NEW_TASK reuses an existing task with matching affinity rather than creating a fresh one, so if SettingsActivity's task was still alive in recents, these translucent popups rendered on top of it instead of the home screen behind them, as the theme's transparency was designed to show. --- android/app/src/main/AndroidManifest.xml | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'android') diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 4b58442..74d19ea 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -10,16 +10,26 @@ android:theme="@android:style/Theme.DeviceDefault.DayNight" android:allowBackup="false"> + + @@ -27,6 +37,7 @@ -- cgit v1.2.3