From 98093c8f131847f2f4d02193b1b66307e50de7eb Mon Sep 17 00:00:00 2001 From: Rahul Patel Date: Tue, 2 Jun 2026 23:28:14 +0530 Subject: [PATCH] Fix deep link gate being skipped when Aurora is already running DeepLinkConfirmActivity shared the default task affinity with the main Aurora task, so when the app was already running the system brought the existing task to the foreground instead of launching the gate. Giving the trampoline an empty task affinity decouples it from the main task, so the confirmation sheet and target listing load every time. --- app/src/main/AndroidManifest.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index e9bcc3f1c..5010bff81 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -111,6 +111,7 @@ android:excludeFromRecents="true" android:exported="true" android:launchMode="singleTop" + android:taskAffinity="" android:theme="@style/AppTheme.Translucent.Transparent">