Skip to content

Commit 4acea9d

Browse files
author
RN SDK Release User
committed
v15.0.0 release
1 parent d2a0600 commit 4acea9d

File tree

10 files changed

+21
-10
lines changed

10 files changed

+21
-10
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [15.0.0] - 2025-08-06
9+
10+
### Changed:
11+
12+
- Updated underlying Onfido native SDK version:
13+
- iOS 32.6.x (up from 32.5.x)
14+
- Android 23.1.x (up from 22.9.x)
15+
816
## [14.7.0] - 2025-06-05
917

1018
### Changed:

SampleApp/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
# Android and Xcode
66
build/
77

8+
# Tooling
9+
ios/.tool-versions
10+
811
# Xcode
912
#
1013
*.pbxuser

SampleApp/ios/Podfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ PODS:
1111
- ReactCommon/turbomodule/core (= 0.73.8)
1212
- fmt (6.2.1)
1313
- glog (0.3.5)
14-
- Onfido (32.5.0)
15-
- onfido-react-native-sdk (14.5.0):
16-
- Onfido (~> 32.5.0)
14+
- Onfido (32.6.0)
15+
- onfido-react-native-sdk (15.0.0):
16+
- Onfido (~> 32.6.0)
1717
- React
1818
- RCT-Folly (2022.05.16.00):
1919
- boost

SampleApp/yalc.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"version": "v1",
33
"packages": {
44
"@onfido/react-native-sdk": {
5-
"signature": "14f384766f59d9d5bb0a994fe9610f59",
5+
"signature": "30d477b143c4377a4f13eddbe92ff157",
66
"file": true
77
}
88
}

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
def DEFAULT_COMPILE_SDK_VERSION = 34
1414
def DEFAULT_MIN_SDK_VERSION = 21
1515
def DEFAULT_TARGET_SDK_VERSION = 34
16-
def NATIVE_ANDROID_SDK_VERSION = "22.9.+"
16+
def NATIVE_ANDROID_SDK_VERSION = "23.1.+"
1717

1818
def safeExtGet(prop, fallback) {
1919
rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback

android/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88

99
<meta-data
1010
android:name="onfido_integration_version"
11-
android:value="14.7.0" />
11+
android:value="15.0.0" />
1212
</application>
1313
</manifest>

ios/PluginMetadata.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ - (instancetype)init
1313
self = [super init];
1414
if (self) {
1515
_pluginPlatform = @"react-native";
16-
_pluginVersion = @"14.7.0";
16+
_pluginVersion = @"15.0.0";
1717
}
1818
return self;
1919
}

ios/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ install! 'cocoapods',
2727
disable_input_output_paths: true
2828

2929
target 'OnfidoSdk' do
30-
pod 'Onfido', '~> 32.5.0'
30+
pod 'Onfido', '~> 32.6.0'
3131

3232
config = use_native_modules!
3333
use_react_native!(

onfido-react-native-sdk.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ Pod::Spec.new do |s|
2020
s.requires_arc = true
2121

2222
s.dependency "React"
23-
s.dependency "Onfido", "~> 32.5.0"
23+
s.dependency "Onfido", "~> 32.6.0"
2424
end

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@onfido/react-native-sdk",
33
"title": "React Native Onfido Sdk",
4-
"version": "14.7.0",
4+
"version": "15.0.0",
55
"description": "Onfido React Native SDK",
66
"main": "index.ts",
77
"scripts": {

0 commit comments

Comments
 (0)