Issue #13270: Do not launch into Fennec's task anymore.

Initially we did this to avoid a duplicated task right after the migration from Fennec. We'd end up
with the original task from Fennec and the new one from Fenix; with the Fennec task still showing
Fennec in the app switcher, but launching Fenix once selected.

Anyhow, now on Android 11 this causes the Fenix task to get duplicated. The simple fix is to not
do any of that anymore. This may re-introduce the problem with the Fennec migration, but:
* We are at 100% rollout for quite some time. There are still users migrating, but the impact
  of the bug is much lower.
* The bug after the migration was only temporary. This bug here is happening every time you
  launch Fenix. So I'd rather fix this than a possible inconvenience right after the migration.
pull/159/head^2
Sebastian Kaspari 4 years ago
parent c1bf66618e
commit 943455658b

@ -19,12 +19,10 @@
<activity-alias
android:name="${applicationId}.App"
android:targetActivity="org.mozilla.fenix.MigrationDecisionActivity"
android:taskAffinity="${applicationId}.BROWSER"
tools:replace="android:targetActivity" />
<activity
android:name="org.mozilla.fenix.MigrationDecisionActivity"
android:taskAffinity="${applicationId}.BROWSER"
android:exported="false" />
<service android:name="org.mozilla.fenix.MigrationService" />

Loading…
Cancel
Save