react-native-smallcase-gateway 7.6.1 → 7.7.0
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 +11 -0
- package/android/build.gradle +1 -1
- package/package.json +1 -1
- package/react-native-smallcase-gateway.podspec +1 -1
package/README.md
CHANGED
|
@@ -28,6 +28,17 @@ platform :ios, '11.0'
|
|
|
28
28
|
then run
|
|
29
29
|
`cd ios; pod update`
|
|
30
30
|
|
|
31
|
+
Apps using Loans KYC must also add these usage descriptions to the iOS app's `Info.plist`:
|
|
32
|
+
|
|
33
|
+
```xml
|
|
34
|
+
<key>NSCameraUsageDescription</key>
|
|
35
|
+
<string>Camera access is required to capture your selfie during KYC.</string>
|
|
36
|
+
<key>NSMicrophoneUsageDescription</key>
|
|
37
|
+
<string>Microphone access is required for audio during video KYC.</string>
|
|
38
|
+
<key>NSLocationWhenInUseUsageDescription</key>
|
|
39
|
+
<string>Location access is required to verify your location during KYC.</string>
|
|
40
|
+
```
|
|
41
|
+
|
|
31
42
|
## android setup
|
|
32
43
|
|
|
33
44
|
Add these lines to your project level `build.gradle`
|
package/android/build.gradle
CHANGED
|
@@ -150,7 +150,7 @@ dependencies {
|
|
|
150
150
|
//noinspection GradleDynamicVersion
|
|
151
151
|
implementation 'com.facebook.react:react-native:+' // From node_modules
|
|
152
152
|
implementation 'com.smallcase.gateway:sdk:6.1.2'
|
|
153
|
-
implementation 'com.smallcase.loans:sdk:5.3.
|
|
153
|
+
implementation 'com.smallcase.loans:sdk:5.3.2'
|
|
154
154
|
implementation "androidx.core:core-ktx:1.3.1"
|
|
155
155
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
156
156
|
}
|
package/package.json
CHANGED