@qore-id/react-native-qoreid-sdk 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
QoreID React Native SDK
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
Link to [documentation](https://
|
|
4
|
+
Link to [documentation](https://docs.qoreid.com/docs/qoreid-react-native-sdk)
|
|
5
5
|
|
|
6
6
|
## Installation
|
|
7
7
|
|
|
@@ -36,6 +36,13 @@ Add this snippet of code to your `~/java/com.<app name>/MainActivity`
|
|
|
36
36
|
|
|
37
37
|
```
|
|
38
38
|
|
|
39
|
+
Add import statement above the class
|
|
40
|
+
|
|
41
|
+
```java
|
|
42
|
+
import com.qoreidsdk.QoreidSdkModule;
|
|
43
|
+
|
|
44
|
+
```
|
|
45
|
+
|
|
39
46
|
<!-- ### iOS
|
|
40
47
|
|
|
41
48
|
From your root directory
|