mirror of
https://github.com/edufeed-org/nips.git
synced 2025-12-09 16:24:32 +00:00
Add result from multiple intents
This commit is contained in:
parent
93e6c3880b
commit
03a555beb5
1 changed files with 17 additions and 0 deletions
17
55.md
17
55.md
|
|
@ -84,6 +84,23 @@ If you are developing a signer application them you need to add this to your And
|
|||
android:launchMode="singleTop"
|
||||
```
|
||||
|
||||
Signer MUST answer multiple permissions with an array of results
|
||||
|
||||
```kotlin
|
||||
|
||||
val results = listOf(
|
||||
Result(
|
||||
package = signerPackageName,
|
||||
result = eventSignture,
|
||||
id = intentId
|
||||
)
|
||||
)
|
||||
|
||||
val json = results.toJson()
|
||||
|
||||
intent.putExtra("results", json)
|
||||
```
|
||||
|
||||
Send the Intent:
|
||||
|
||||
```kotlin
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue