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 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`
@@ -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.1'
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-native-smallcase-gateway",
3
3
  "title": "React Native Smallcase Gateway",
4
- "version": "7.6.1",
4
+ "version": "7.7.0",
5
5
  "description": "smallcase gateway bindings for react native",
6
6
  "main": "src/index.js",
7
7
  "files": [
@@ -35,5 +35,5 @@ Pod::Spec.new do |s|
35
35
  end
36
36
 
37
37
  s.dependency 'SCGateway', '7.2.0'
38
- s.dependency 'SCLoans', '7.3.0'
38
+ s.dependency 'SCLoans', '7.4.0'
39
39
  end