add optional kind to content resolver

This commit is contained in:
greenart7c3 2024-07-12 05:09:38 -03:00
parent 016dc7ef89
commit 5c4aa8f294
No known key found for this signature in database
GPG Key ID: 885822EED3A26A6D

8
55.md
View File

@ -332,7 +332,7 @@ If the user chose to always reject the event, signer application will return the
```kotlin
val result = context.contentResolver.query(
Uri.parse("content://com.example.signer.NIP04_ENCRYPT"),
listOf("$plainText", "${hex_pub_key}", "${logged_in_user_npub}"),
listOf("$plainText", "${hex_pub_key}", "${logged_in_user_npub}", "${optional_event_kind}"),
null,
null,
null
@ -356,7 +356,7 @@ If the user chose to always reject the event, signer application will return the
```kotlin
val result = context.contentResolver.query(
Uri.parse("content://com.example.signer.NIP44_ENCRYPT"),
listOf("$plainText", "${hex_pub_key}", "${logged_in_user_npub}"),
listOf("$plainText", "${hex_pub_key}", "${logged_in_user_npub}", "${optional_event_kind}"),
null,
null,
null
@ -380,7 +380,7 @@ If the user chose to always reject the event, signer application will return the
```kotlin
val result = context.contentResolver.query(
Uri.parse("content://com.example.signer.NIP04_DECRYPT"),
listOf("$encryptedText", "${hex_pub_key}", "${logged_in_user_npub}"),
listOf("$encryptedText", "${hex_pub_key}", "${logged_in_user_npub}", "${optional_event_kind}"),
null,
null,
null
@ -404,7 +404,7 @@ If the user chose to always reject the event, signer application will return the
```kotlin
val result = context.contentResolver.query(
Uri.parse("content://com.example.signer.NIP44_DECRYPT"),
listOf("$encryptedText", "${hex_pub_key}", "${logged_in_user_npub}"),
listOf("$encryptedText", "${hex_pub_key}", "${logged_in_user_npub}", "${optional_event_kind}"),
null,
null,
null