Skip to content

Commit 1ed0c34

Browse files
Ensure IterableTrampolineActivity always launched (#553) (#618)
- Ensure IterableTrampolineActivity always launched to handle all notifications - Reverts back to launchMode="singleInstance" to ensure that the activity is always launched - Use excludeFromRecents="true" to ensure that the activity is not shown in the recent apps list Co-authored-by: Tim Nortman <[email protected]>
1 parent f479175 commit 1ed0c34

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

iterableapi/src/main/AndroidManifest.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
<activity
2626
android:name=".IterableTrampolineActivity"
2727
android:exported="false"
28-
android:launchMode="singleTop"
28+
android:launchMode="singleInstance"
29+
android:excludeFromRecents="true"
2930
android:theme="@style/TrampolineActivity.Transparent"/>
3031
</application>
3132

0 commit comments

Comments
 (0)