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.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/55.md b/55.md
index 005e4f9..afca0aa 100644
--- a/55.md
+++ b/55.md
@@ -84,6 +84,23 @@ If you are developing a signer application them you need to add this to your And
84android:launchMode="singleTop" 84android:launchMode="singleTop"
85``` 85```
86 86
87Signer MUST answer multiple permissions with an array of results
88
89```kotlin
90
91val results = listOf(
92 Result(
93 package = signerPackageName,
94 result = eventSignture,
95 id = intentId
96 )
97)
98
99val json = results.toJson()
100
101intent.putExtra("results", json)
102```
103
87Send the Intent: 104Send the Intent:
88 105
89```kotlin 106```kotlin