Skip to content

Commit 7f591a4

Browse files
author
Krzysztof Kurzawa
committed
Release of version 0.23.1
1 parent cb18640 commit 7f591a4

File tree

6 files changed

+13
-7
lines changed

6 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.23.1] - 2024-09-16
6+
7+
### Fixed
8+
- [Android] Null pointer exception while launching callback from push notification in some cases.
9+
10+
511
## [0.23.0] - 2024-08-05
612

713
### Fixed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Synerise React Native SDK (react-native-synerise-sdk) (0.23.0)
1+
# Synerise React Native SDK (react-native-synerise-sdk) (0.23.1)
22

33
[![Platform](https://img.shields.io/badge/platform-iOS-orange.svg)](https://github.com/synerise/ios-sdk)
44
[![Platform](https://img.shields.io/badge/platform-Android-orange.svg)](https://github.com/synerise/android-sdk)

android/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ ext.versions = [
44
'minSdk' : 21,
55
'compileSdk' : 33,
66
'targetSdk' : 33,
7-
'versionCode': 37,
8-
'versionName': "0.23.0"
7+
'versionCode': 38,
8+
'versionName': "0.23.1"
99
]
1010

1111
buildscript {
@@ -58,7 +58,7 @@ repositories {
5858
dependencies {
5959
implementation 'com.facebook.react:react-native:+'
6060
implementation "com.squareup.okhttp3:logging-interceptor:4.9.1"
61-
api 'com.synerise.sdk:synerise-mobile-sdk:5.20.0'
61+
api 'com.synerise.sdk:synerise-mobile-sdk:5.20.1'
6262
}
6363

6464
//apply from: 'publish.gradle'

android/src/main/java/com/synerise/sdk/react/RNSyneriseInitializer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class RNSyneriseInitializer {
1717
public Boolean isCrashHandlingEnabled;
1818
public static volatile boolean isInitialized = false;
1919

20-
public static final String SDK_PLUGIN_VERSION = "0.23.0";
20+
public static final String SDK_PLUGIN_VERSION = "0.23.1";
2121

2222
public void initialize(Application app) {
2323
if (isInitialized == false) {

ios/ReactNativeSynerise/Main/RNSyneriseInitializer.m

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

99
#import "RNSyneriseInitializer.h"
1010

11-
NSString * const SNRSyneriseSDKPluginVersion = @"0.23.0";
11+
NSString * const SNRSyneriseSDKPluginVersion = @"0.23.1";
1212

1313
@implementation RNSyneriseInitializer
1414

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-synerise-sdk",
3-
"version": "0.23.0",
3+
"version": "0.23.1",
44
"description": "React Native wrapper for Synerise SDK",
55
"author": {
66
"name": "Synerise",

0 commit comments

Comments
 (0)