Skip to content

Commit 11fa414

Browse files
authored
Updated SDK version to 22.06.3 (#110)
* Updated SDK version to 22.06.3 -- Updated Underlying android SDK version to 22.06.2 * Updated changelog
1 parent a53bfa2 commit 11fa414

File tree

7 files changed

+11
-6
lines changed

7 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 22.06.3
2+
* Fixed a bug in Android SDK that would throw a null pointer exception when calling "CountlyPush.displayNotification " and CountlyPush was not initialized
3+
* Updated Underlying android SDK version to 22.06.2
4+
* Underlying iOS SDK version is 22.06.2
5+
16
## 22.06.2
27
* Fixed a bug in Android SDK that would throw a null pointer exception when calling "CountlyPush.onTokenRefresh" and CountlyPush was not initialized
38
* Updated Underlying android SDK version to 22.06.1

CountlyReactNative.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'CountlyReactNative'
3-
s.version = '22.06.2'
3+
s.version = '22.06.3'
44
s.license = {
55
:type => 'COMMUNITY',
66
:text => <<-LICENSE

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ repositories {
4141

4242
dependencies {
4343
implementation "com.facebook.react:react-native:${safeExtGet('reactNativeVersion', '+')}"
44-
implementation 'ly.count.android:sdk:22.06.1'
44+
implementation 'ly.count.android:sdk:22.06.2'
4545

4646
// Import the BoM for the Firebase platform
4747
// The BoM version of 28.4.2 is the newest release that will target firebase-messaging version 22

android/src/main/java/ly/count/android/sdk/react/CountlyReactNative.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public String toString(){
8181
public class CountlyReactNative extends ReactContextBaseJavaModule implements LifecycleEventListener {
8282

8383
public static final String TAG = "CountlyRNPlugin";
84-
private String COUNTLY_RN_SDK_VERSION_STRING = "22.06.2";
84+
private String COUNTLY_RN_SDK_VERSION_STRING = "22.06.3";
8585
private String COUNTLY_RN_SDK_NAME = "js-rnb-android";
8686

8787
private static final CountlyConfig config = new CountlyConfig();

example/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ rm App.js
1111
curl https://raw.githubusercontent.com/Countly/countly-sdk-react-native-bridge/master/example/App.js --output App.js
1212
curl https://raw.githubusercontent.com/Countly/countly-sdk-react-native-bridge/master/example/Example.js --output Example.js
1313

14-
yarn add countly-sdk-react-native-bridge@22.06.2
14+
yarn add countly-sdk-react-native-bridge@22.06.3
1515

1616
cd ./ios
1717
pod install

ios/src/CountlyReactNative.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ @interface CountlyFeedbackWidget ()
2222
+ (CountlyFeedbackWidget *)createWithDictionary:(NSDictionary *)dictionary;
2323
@end
2424

25-
NSString* const kCountlyReactNativeSDKVersion = @"22.06.2";
25+
NSString* const kCountlyReactNativeSDKVersion = @"22.06.3";
2626
NSString* const kCountlyReactNativeSDKName = @"js-rnb-ios";
2727

2828
CountlyConfig* config = nil; // alloc here

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "countly-sdk-react-native-bridge",
3-
"version": "22.06.2",
3+
"version": "22.06.3",
44
"author": "Countly <hello@count.ly> (https://count.ly/)",
55
"bugs": {
66
"url": "https://github.com/Countly/countly-sdk-react-native-bridge/issues"

0 commit comments

Comments
 (0)