Add launchMode for signers

This commit is contained in:
greenart7c3 2024-11-01 08:16:06 -03:00
parent 061d2ac47d
commit 93e6c3880b
No known key found for this signature in database
GPG Key ID: 885822EED3A26A6D

6
55.md
View File

@ -78,6 +78,12 @@ If you are sending multiple intents without awaiting you can add some intent fla
intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP or Intent.FLAG_ACTIVITY_CLEAR_TOP) intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP or Intent.FLAG_ACTIVITY_CLEAR_TOP)
``` ```
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
```kotlin
android:launchMode="singleTop"
```
Send the Intent: Send the Intent:
```kotlin ```kotlin