diff options
| -rw-r--r-- | 55.md | 6 |
1 files changed, 6 insertions, 0 deletions
| @@ -78,6 +78,12 @@ If you are sending multiple intents without awaiting you can add some intent fla | |||
| 78 | intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP or Intent.FLAG_ACTIVITY_CLEAR_TOP) | 78 | intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP or Intent.FLAG_ACTIVITY_CLEAR_TOP) |
| 79 | ``` | 79 | ``` |
| 80 | 80 | ||
| 81 | If you are developing a signer application them you need to add this to your AndroidManifest.xml so clients can use the intent flags above | ||
| 82 | |||
| 83 | ```kotlin | ||
| 84 | android:launchMode="singleTop" | ||
| 85 | ``` | ||
| 86 | |||
| 81 | Send the Intent: | 87 | Send the Intent: |
| 82 | 88 | ||
| 83 | ```kotlin | 89 | ```kotlin |