Skip to content

Commit

Permalink
v14.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
RN SDK Release User committed Dec 9, 2024
1 parent 468c1d7 commit 521100d
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 6 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

### Changed:

- Updated underlying Onfido native SDK version:
- Android 22.1.x (up from 22.0.x)

### Fixed:

- The OnfidoTheme.AUTOMATIC now correctly works on iOS.

## [14.0.0] - 2024-11-04

### Changed:
Expand Down
2 changes: 1 addition & 1 deletion SampleApp/yalc.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"version": "v1",
"packages": {
"@onfido/react-native-sdk": {
"signature": "3b0c59d25fc4608a0d90b02ab5e7ea90",
"signature": "d9d96eaa5824a5f1825edf95df7038eb",
"file": true
}
}
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
def DEFAULT_COMPILE_SDK_VERSION = 34
def DEFAULT_MIN_SDK_VERSION = 21
def DEFAULT_TARGET_SDK_VERSION = 34
def NATIVE_ANDROID_SDK_VERSION = "22.0.+"
def NATIVE_ANDROID_SDK_VERSION = "22.1.+"

def safeExtGet(prop, fallback) {
rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
Expand Down
2 changes: 1 addition & 1 deletion android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@

<meta-data
android:name="onfido_integration_version"
android:value="14.0.0" />
android:value="14.1.0" />
</application>
</manifest>
1 change: 1 addition & 0 deletions ios/OnfidoPluginConfig.swift
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ struct OnfidoLocalisation: Codable {
enum Theme: String, Codable {
case dark = "DARK"
case light = "LIGHT"
case automatic = "AUTOMATIC"
}

enum OnfidoDocumentType: String, Codable {
Expand Down
2 changes: 1 addition & 1 deletion ios/OnfidoSdk.swift
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ final class OnfidoSdk: RCTEventEmitter {
appearance.setUserInterfaceStyle(.dark)
case .light:
appearance.setUserInterfaceStyle(.light)
default:
case .automatic:
appearance.setUserInterfaceStyle(.unspecified)
}
}
Expand Down
2 changes: 1 addition & 1 deletion ios/PluginMetadata.m
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ - (instancetype)init
self = [super init];
if (self) {
_pluginPlatform = @"react-native";
_pluginVersion = @"14.0.0";
_pluginVersion = @"14.1.0";
}
return self;
}
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": "@onfido/react-native-sdk",
"title": "React Native Onfido Sdk",
"version": "14.0.0",
"version": "14.1.0",
"description": "Onfido React Native SDK",
"main": "index.ts",
"scripts": {
Expand Down

0 comments on commit 521100d

Please sign in to comment.