dojah-kyc-sdk-react_native 0.0.2 → 0.0.6
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 +0 -9
- package/android/build.gradle +3 -2
- package/android/gradle.properties +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -166,12 +166,3 @@ To use the SDK, you need a WidgetID, which is a required parameter for initializ
|
|
|
166
166
|
|
|
167
167
|
7. Copy Your Widget ID: After publishing, the platform will generate a Widget ID. Copy this Widget ID as you will need it to initialize the SDK as stated above.
|
|
168
168
|
```
|
|
169
|
-
|
|
170
|
-
## Contributing
|
|
171
|
-
- [KYC WIDGET Repository] (https://github.com/dojah-inc/dojah-react-native-sdk)
|
|
172
|
-
- Fork it!
|
|
173
|
-
- Create your feature branch: `git checkout -b feature/feature-name`
|
|
174
|
-
- Commit your changes: `git commit -am 'Some commit message'`
|
|
175
|
-
- Push to the branch: `git push origin feature/feature-name`
|
|
176
|
-
- Submit a pull request 😉😉
|
|
177
|
-
|
package/android/build.gradle
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
buildscript {
|
|
3
3
|
// Buildscript is evaluated before everything else so we can't use getExtOrDefault
|
|
4
|
-
def kotlin_version =
|
|
4
|
+
def kotlin_version = project.properties["DojahKyc_kotlinVersion"]
|
|
5
5
|
|
|
6
6
|
repositories {
|
|
7
7
|
google()
|
|
@@ -108,7 +108,8 @@ dependencies {
|
|
|
108
108
|
implementation "com.facebook.react:react-native:+"
|
|
109
109
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
110
110
|
|
|
111
|
-
implementation 'com.github.dojah-inc:sdk-kotlin:
|
|
111
|
+
// implementation 'com.github.dojah-inc:sdk-kotlin:0.0.1-dev'
|
|
112
|
+
implementation 'com.github.dojah-inc:sdk-kotlin:v0.0.3'
|
|
112
113
|
|
|
113
114
|
|
|
114
115
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dojah-kyc-sdk-react_native",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "Dojah SDK",
|
|
5
5
|
"main": "lib/commonjs/index",
|
|
6
6
|
"module": "lib/module/index",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"type": "git",
|
|
44
44
|
"url": "git+https://github.com/dojah-inc/dojah-react-native-sdk.git"
|
|
45
45
|
},
|
|
46
|
-
"author": "Dojah (https://github.com/dojah-inc)",
|
|
46
|
+
"author": "Dojah <dojah.io> (https://github.com/dojah-inc)",
|
|
47
47
|
"license": "MIT",
|
|
48
48
|
"bugs": {
|
|
49
49
|
"url": "https://github.com/dojah-inc/dojah-react-native-sdk/issues"
|