Skip to content
Closed
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
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ jobs:

build-ios-demo-app:
macos:
xcode: 16.2.0
resource_class: macos.m1.large.gen1
xcode: 16.4.0
resource_class: m4pro.medium
working_directory: /Users/distiller/project

steps:
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
cd /Users/distiller/project/DemoApp
yarn react-native bundle --entry-file index.js --platform ios --dev false --bundle-output ios/main.jsbundle --assets-dest ios
cd ios
xcodebuild -workspace DemoApp.xcworkspace -scheme DemoAppUITests -destination 'platform=iOS Simulator,name=iPhone 16 Pro,OS=18.2' -configuration Debug test
xcodebuild -workspace DemoApp.xcworkspace -scheme DemoAppUITests -destination 'platform=iOS Simulator,name=iPhone 16 Pro,OS=18.5' -configuration Debug test

workflows:
version: 2
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ All notable changes to this project will be documented in this file. To know bet
## [3.1.2]

- Updated the underlying iOS SDK to version [4.1.1](https://docs.truelayer.com/docs/ios-sdk-release-history).
- Updated the underlying Android SDK to version [4.1.4](https://docs.truelayer.com/docs/android-sdk-release-history).

## [3.1.1]

Expand Down
2 changes: 1 addition & 1 deletion RNTrueLayerPaymentsSDK/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,5 @@ repositories {

dependencies {
implementation 'com.facebook.react:react-native:+'
implementation 'com.truelayer.payments:ui:4.1.2'
implementation 'com.truelayer.payments:ui:4.1.4'
}
2 changes: 1 addition & 1 deletion RNTrueLayerPaymentsSDK/js/TrueLayerPaymentsSDKWrapper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export abstract class TrueLayerPaymentsSDKWrapper {
environment: Environment = Environment.Production,
theme?: Theme
): Promise<void> {
return RNTrueLayerPaymentsSDK!!._configure(environment, theme);
return RNTrueLayerPaymentsSDK!!._configure(environment, theme ?? {});
}

/**
Expand Down