Skip to content

Commit fae87d0

Browse files
committed
[MOB - 4026] Fix - App not visible in recent apps
1. `singleInstance` launchmode of TrampolineActivity did not allow for parent activity to show in recent apps after destorying itself. Setting it to `singleTop` allows it.
1 parent 9322ada commit fae87d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

iterableapi/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<activity
2626
android:name=".IterableTrampolineActivity"
2727
android:exported="false"
28-
android:launchMode="singleInstance"
28+
android:launchMode="singleTop"
2929
android:theme="@style/TrampolineActivity.Transparent"/>
3030
</application>
3131

0 commit comments

Comments
 (0)