Skip to content

Commit 521100d

Browse files
author
RN SDK Release User
committed
v14.1.0 release
1 parent 468c1d7 commit 521100d

File tree

8 files changed

+16
-6
lines changed

8 files changed

+16
-6
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ 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+
### Changed:
9+
10+
- Updated underlying Onfido native SDK version:
11+
- Android 22.1.x (up from 22.0.x)
12+
13+
### Fixed:
14+
15+
- The OnfidoTheme.AUTOMATIC now correctly works on iOS.
16+
817
## [14.0.0] - 2024-11-04
918

1019
### Changed:

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": "3b0c59d25fc4608a0d90b02ab5e7ea90",
5+
"signature": "d9d96eaa5824a5f1825edf95df7038eb",
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.0.+"
16+
def NATIVE_ANDROID_SDK_VERSION = "22.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.0.0" />
11+
android:value="14.1.0" />
1212
</application>
1313
</manifest>

ios/OnfidoPluginConfig.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ struct OnfidoLocalisation: Codable {
5151
enum Theme: String, Codable {
5252
case dark = "DARK"
5353
case light = "LIGHT"
54+
case automatic = "AUTOMATIC"
5455
}
5556

5657
enum OnfidoDocumentType: String, Codable {

ios/OnfidoSdk.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ final class OnfidoSdk: RCTEventEmitter {
5252
appearance.setUserInterfaceStyle(.dark)
5353
case .light:
5454
appearance.setUserInterfaceStyle(.light)
55-
default:
55+
case .automatic:
5656
appearance.setUserInterfaceStyle(.unspecified)
5757
}
5858
}

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.0.0";
16+
_pluginVersion = @"14.1.0";
1717
}
1818
return self;
1919
}

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.0.0",
4+
"version": "14.1.0",
55
"description": "Onfido React Native SDK",
66
"main": "index.ts",
77
"scripts": {

0 commit comments

Comments
 (0)