upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--55.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/55.md b/55.md
index 54dc44a..1f7972b 100644
--- a/55.md
+++ b/55.md
@@ -72,6 +72,12 @@ Set the Signer package name:
72intent.`package` = "com.example.signer" 72intent.`package` = "com.example.signer"
73``` 73```
74 74
75If 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
78intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP or Intent.FLAG_ACTIVITY_CLEAR_TOP)
79```
80
75Send the Intent: 81Send the Intent:
76 82
77```kotlin 83```kotlin