upleb.uk

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

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgreenart7c3 <115044884+greenart7c3@users.noreply.github.com>2024-03-08 09:20:19 -0300
committerGitHub <noreply@github.com>2024-03-08 09:20:19 -0300
commit07074d8ba2615609fb702030151e191edcc91909 (patch)
treeb1a3d55d5c23b0b41f6c7ba74326a6e935c4d7e8
parentbf7294b22362539eda549d8a7fd0d85261f40b3f (diff)
Apply suggestions from code review
Co-authored-by: dluvian <133484344+dluvian@users.noreply.github.com>
-rw-r--r--100.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/100.md b/100.md
index bf77396..06d6b35 100644
--- a/100.md
+++ b/100.md
@@ -4,13 +4,13 @@
4 4
5`draft` `optional` 5`draft` `optional`
6 6
7This NIP describes a method for 2-way communication between a android signer and any Nostr client on Android. The Android signer is an Android Application and the Client can be a Web Client or an Android Application. 7This NIP describes a method for 2-way communication between an Android signer and any Nostr client on Android. The Android signer is an Android Application and the client can be a web client or an Android application.
8 8
9# Usage for Android applications 9# Usage for Android applications
10 10
11The Android signer uses Intents and Content Resolvers to communicate between applications. 11The Android signer uses Intents and Content Resolvers to communicate between applications.
12 12
13To be able to use The Android signer in your application you should this to your AndroidManifest.xml: 13To be able to use the Android signer in your application you should add this to your AndroidManifest.xml:
14 14
15```xml 15```xml
16<queries> 16<queries>
@@ -38,7 +38,7 @@ fun isExternalSignerInstalled(context: Context): Boolean {
38 38
39## Using Intents 39## Using Intents
40 40
41To get the result back from the Signer Appication you should use registerForActivityResult or rememberLauncherForActivityResult in Kotlin. If you are using another framework check the documentation of your framework or a third party library to get the result. 41To get the result back from the Signer Application you should use `registerForActivityResult` or `rememberLauncherForActivityResult` in Kotlin. If you are using another framework check the documentation of your framework or a third party library to get the result.
42 42
43Create the Intent using the **nostrsigner** scheme: 43Create the Intent using the **nostrsigner** scheme:
44 44