Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [7.7.0](https://github.com/smallcase/react-native-smallcase-gateway/compare/v7.6.1...v7.7.0) (2026-08-27)


### Features

* add Loans KYC permission usage descriptions ([e384009](https://github.com/smallcase/react-native-smallcase-gateway/commit/e384009584353f89528e07bbf7ee28ce7e2eba2d))

### [7.6.1](https://github.com/smallcase/react-native-smallcase-gateway/compare/v7.6.0...v7.6.1) (2026-08-17)

### Improvements
Expand Down
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,17 @@ platform :ios, '11.0'
then run
`cd ios; pod update`

Apps using Loans KYC must also add these usage descriptions to the iOS app's `Info.plist`:

```xml
<key>NSCameraUsageDescription</key>
<string>Camera access is required to capture your selfie during KYC.</string>
<key>NSMicrophoneUsageDescription</key>
<string>Microphone access is required for audio during video KYC.</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>Location access is required to verify your location during KYC.</string>
```

## android setup

Add these lines to your project level `build.gradle`
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-native-smallcase-gateway",
"title": "React Native Smallcase Gateway",
"version": "7.6.1",
"version": "7.7.0",
"description": "smallcase gateway bindings for react native",
"main": "src/index.js",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion react-native-smallcase-gateway.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ Pod::Spec.new do |s|
end

s.dependency 'SCGateway', '7.2.0'
s.dependency 'SCLoans', '7.3.0'
s.dependency 'SCLoans', '7.4.0'
end
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,12 @@
<key>NSAllowsLocalNetworking</key>
<true />
</dict>
<key>NSCameraUsageDescription</key>
<string>Camera access is required to capture your selfie during KYC.</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string />
<string>Location access is required to verify your location during KYC.</string>
<key>NSMicrophoneUsageDescription</key>
<string>Microphone access is required for audio during video KYC.</string>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIRequiredDeviceCapabilities</key>
Expand All @@ -87,4 +91,4 @@
<key>UIViewControllerBasedStatusBarAppearance</key>
<false />
</dict>
</plist>
</plist>
Loading