dojah-kyc-sdk-react_native 0.0.6 → 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 -6
- 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
|
@@ -82,10 +82,6 @@ android {
|
|
|
82
82
|
disable "GradleCompatible"
|
|
83
83
|
}
|
|
84
84
|
|
|
85
|
-
compileOptions {
|
|
86
|
-
sourceCompatibility JavaVersion.VERSION_1_8
|
|
87
|
-
targetCompatibility JavaVersion.VERSION_1_8
|
|
88
|
-
}
|
|
89
85
|
}
|
|
90
86
|
|
|
91
87
|
repositories {
|
|
@@ -108,8 +104,8 @@ dependencies {
|
|
|
108
104
|
implementation "com.facebook.react:react-native:+"
|
|
109
105
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
110
106
|
|
|
111
|
-
|
|
112
|
-
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'
|
|
113
109
|
|
|
114
110
|
|
|
115
111
|
}
|