File tree Expand file tree Collapse file tree 6 files changed +13
-7
lines changed
src/main/java/com/synerise/sdk/react
ios/ReactNativeSynerise/Main Expand file tree Collapse file tree 6 files changed +13
-7
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project will be documented in this file.
4
4
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
+
5
11
## [ 0.23.0] - 2024-08-05
6
12
7
13
### Fixed
Original file line number Diff line number Diff line change 1
- # Synerise React Native SDK (react-native-synerise-sdk) (0.23.0 )
1
+ # Synerise React Native SDK (react-native-synerise-sdk) (0.23.1 )
2
2
3
3
[ ![ Platform] ( https://img.shields.io/badge/platform-iOS-orange.svg )] ( https://github.com/synerise/ios-sdk )
4
4
[ ![ Platform] ( https://img.shields.io/badge/platform-Android-orange.svg )] ( https://github.com/synerise/android-sdk )
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ ext.versions = [
4
4
' minSdk' : 21 ,
5
5
' compileSdk' : 33 ,
6
6
' targetSdk' : 33 ,
7
- ' versionCode' : 37 ,
8
- ' versionName' : " 0.23.0 "
7
+ ' versionCode' : 38 ,
8
+ ' versionName' : " 0.23.1 "
9
9
]
10
10
11
11
buildscript {
@@ -58,7 +58,7 @@ repositories {
58
58
dependencies {
59
59
implementation ' com.facebook.react:react-native:+'
60
60
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 '
62
62
}
63
63
64
64
// apply from: 'publish.gradle'
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ public class RNSyneriseInitializer {
17
17
public Boolean isCrashHandlingEnabled ;
18
18
public static volatile boolean isInitialized = false ;
19
19
20
- public static final String SDK_PLUGIN_VERSION = "0.23.0 " ;
20
+ public static final String SDK_PLUGIN_VERSION = "0.23.1 " ;
21
21
22
22
public void initialize (Application app ) {
23
23
if (isInitialized == false ) {
Original file line number Diff line number Diff line change 8
8
9
9
#import " RNSyneriseInitializer.h"
10
10
11
- NSString * const SNRSyneriseSDKPluginVersion = @" 0.23.0 " ;
11
+ NSString * const SNRSyneriseSDKPluginVersion = @" 0.23.1 " ;
12
12
13
13
@implementation RNSyneriseInitializer
14
14
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-native-synerise-sdk" ,
3
- "version" : " 0.23.0 " ,
3
+ "version" : " 0.23.1 " ,
4
4
"description" : " React Native wrapper for Synerise SDK" ,
5
5
"author" : {
6
6
"name" : " Synerise" ,
You can’t perform that action at this time.
0 commit comments