dojah-kyc-sdk-react_native 0.0.6-dev → 0.0.7-dev
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 +12 -0
- package/android/build.gradle +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -130,6 +130,18 @@ launchDojahKyc(
|
|
|
130
130
|
“{Optional: Email_Address}”
|
|
131
131
|
)
|
|
132
132
|
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
//Example (If you're not passing Reference_ID and Email_Address values)
|
|
136
|
+
|
|
137
|
+
//launchDojahKyc("1234678901234", "DJ-123456", "abc@gmail.com")
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
//Example (If you're not passing Reference_ID and Email_Address values)
|
|
141
|
+
|
|
142
|
+
//launchDojahKyc("1234678901234", null, null)
|
|
143
|
+
|
|
144
|
+
|
|
133
145
|
```
|
|
134
146
|
|
|
135
147
|
### SDK Parameters
|
package/android/build.gradle
CHANGED
|
@@ -104,8 +104,8 @@ dependencies {
|
|
|
104
104
|
implementation "com.facebook.react:react-native:+"
|
|
105
105
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
106
106
|
|
|
107
|
-
|
|
108
|
-
implementation 'com.github.dojah-inc:sdk-kotlin:v0.0.3'
|
|
107
|
+
implementation 'com.github.dojah-inc:sdk-kotlin:v0.0.1-dev'
|
|
108
|
+
// implementation 'com.github.dojah-inc:sdk-kotlin:v0.0.3'
|
|
109
109
|
|
|
110
110
|
|
|
111
111
|
}
|