Compare commits

..
Author SHA1 Message Date
Audrius Molis 0c0ce29702 test adding addBouncyCastleProvider to toBinarySeed 2022-09-09 15:27:50 +03:00
Michele Balistreri af61b0213a bump version 2021-11-17 14:02:23 +03:00
Michele Balistreri 31e057dc04 handle system busy error 2021-11-17 13:04:59 +03:00
Michele Balistreri 7548329c59 default pairing (#44)
use a default pairing password
2021-11-16 08:23:35 +03:00
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -46,5 +46,5 @@ dependencies {
implementation 'com.facebook.react:react-native:+'
implementation 'org.bouncycastle:bcprov-jdk15on:1.60'
implementation 'org.apache.commons:commons-lang3:3.9'
implementation 'com.github.status-im.status-keycard-java:android:3.0.4'
implementation 'com.github.status-im:status-keycard-java:test-adding-addBouncyCastleProvider-SNAPSHOT'
}
+1 -1
View File
@@ -199,7 +199,7 @@ class StatusKeycard: RCTEventEmitter {
let nsError = error as NSError
if nsError.code == 200 && nsError.domain == "NFCError" {
self.sendEvent(withName: "keyCardOnNFCUserCancelled", body: nil)
} else if nsError.code == 201 && nsError.domain == "NFCError" {
} else if (nsError.code == 201 || nsError.code == 203) && (nsError.domain == "NFCError") {
self.sendEvent(withName: "keyCardOnNFCTimeout", body: nil)
}
}
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "react-native-status-keycard",
"homepage": "https://keycard.status.im/",
"version": "2.5.36",
"version": "2.5.37",
"description": "React Native library to interact with Status Keycard using NFC connection",
"main": "index.js",
"scripts": {