upleb.uk

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

summaryrefslogtreecommitdiff
path: root/55.md
diff options
context:
space:
mode:
Diffstat (limited to '55.md')
-rw-r--r--55.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/55.md b/55.md
index 1f7972b..005e4f9 100644
--- a/55.md
+++ b/55.md
@@ -78,6 +78,12 @@ If you are sending multiple intents without awaiting you can add some intent fla
78intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP or Intent.FLAG_ACTIVITY_CLEAR_TOP) 78intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP or Intent.FLAG_ACTIVITY_CLEAR_TOP)
79``` 79```
80 80
81If 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
84android:launchMode="singleTop"
85```
86
81Send the Intent: 87Send the Intent:
82 88
83```kotlin 89```kotlin