react-native-smallcase-gateway 7.6.2 → 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/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/package.json
CHANGED