Skip to content

Commit

Permalink
Ensure IterableTrampolineActivity always launched (#553) (#618)
Browse files Browse the repository at this point in the history
- 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]>
  • Loading branch information
Ayyanchira and tnortman-jabra authored Aug 31, 2023
1 parent f479175 commit 1ed0c34
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion iterableapi/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
<activity
android:name=".IterableTrampolineActivity"
android:exported="false"
android:launchMode="singleTop"
android:launchMode="singleInstance"
android:excludeFromRecents="true"
android:theme="@style/TrampolineActivity.Transparent"/>
</application>

Expand Down

0 comments on commit 1ed0c34

Please sign in to comment.