Skip to content

Commit

Permalink
docs: add comment to latest PR for historical reference (#273)
Browse files Browse the repository at this point in the history
  • Loading branch information
levibostian authored Oct 19, 2023
1 parent 72a0535 commit 4d82a42
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion messagingpush/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@
<uses-permission android:name="android.permission.INTERNET" />

<application>
<!-- Transparent activity for push interactions -->
<!-- Transparent activity for push interactions
Notes:
* Using launchMode="singleTop" because Android OS does not launch activity again in one session if the activity was launched recently from earlier notification
-->
<activity
android:name=".activity.NotificationClickReceiverActivity"
android:excludeFromRecents="true"
Expand Down

0 comments on commit 4d82a42

Please sign in to comment.