Add result from multiple intents

This commit is contained in:
greenart7c3 2024-11-01 08:24:52 -03:00
parent 93e6c3880b
commit 03a555beb5
No known key found for this signature in database
GPG Key ID: 885822EED3A26A6D

17
55.md
View File

@ -84,6 +84,23 @@ If you are developing a signer application them you need to add this to your And
android:launchMode="singleTop" 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: Send the Intent:
```kotlin ```kotlin