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.
This commit is contained in:
Rahul Patel
2026-06-02 23:28:14 +05:30
parent 753c7fa06a
commit 98093c8f13

View File

@@ -111,6 +111,7 @@
android:excludeFromRecents="true" android:excludeFromRecents="true"
android:exported="true" android:exported="true"
android:launchMode="singleTop" android:launchMode="singleTop"
android:taskAffinity=""
android:theme="@style/AppTheme.Translucent.Transparent"> android:theme="@style/AppTheme.Translucent.Transparent">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.VIEW" /> <action android:name="android.intent.action.VIEW" />