diff options
| -rw-r--r-- | 55.md | 6 |
1 files changed, 6 insertions, 0 deletions
| @@ -72,6 +72,12 @@ Set the Signer package name: | |||
| 72 | intent.`package` = "com.example.signer" | 72 | intent.`package` = "com.example.signer" |
| 73 | ``` | 73 | ``` |
| 74 | 74 | ||
| 75 | If you are sending multiple intents without awaiting you can add some intent flags to sign all events without opening multiple times the signer | ||
| 76 | |||
| 77 | ```kotlin | ||
| 78 | intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP or Intent.FLAG_ACTIVITY_CLEAR_TOP) | ||
| 79 | ``` | ||
| 80 | |||
| 75 | Send the Intent: | 81 | Send the Intent: |
| 76 | 82 | ||
| 77 | ```kotlin | 83 | ```kotlin |