Skip to content

Commit 660d0d2

Browse files
Updated sdk version and android sdk version. (#91)
* Updated sdk version and android sdk version. * Create CHANGELOG.md * removing .tgz files Co-authored-by: ArtursKadikis <kadikis.arturs@gmail.com>
1 parent 01f1a2c commit 660d0d2

File tree

8 files changed

+11
-6
lines changed

8 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.02.0
2+
* Fixed notification trampoline restrictions in Android 12 using reverse activity trampolining implementation.
3+
* Updated underlying android SDK version to 22.02.0
4+
* Underlying iOS SDK version is 21.11.2
5+
16
## 21.11.2
27
* Fixed iOS push notification open url issue when notification is cached.
38
* Underlying android SDK version is 21.11.2

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 = '21.11.2'
3+
s.version = '22.02.0'
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:21.11.2'
44+
implementation 'ly.count.android:sdk:22.02.0'
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
@@ -79,7 +79,7 @@ public String toString(){
7979
public class CountlyReactNative extends ReactContextBaseJavaModule implements LifecycleEventListener {
8080

8181
public static final String TAG = "CountlyRNPlugin";
82-
private String COUNTLY_RN_SDK_VERSION_STRING = "21.11.2";
82+
private String COUNTLY_RN_SDK_VERSION_STRING = "22.02.0";
8383
private String COUNTLY_RN_SDK_NAME = "js-rnb-android";
8484

8585
private static final CountlyConfig config = new CountlyConfig();
-180 KB
Binary file not shown.

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@21.11.2
14+
yarn add countly-sdk-react-native-bridge@22.02.0
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
@@ -21,7 +21,7 @@ @interface CountlyFeedbackWidget ()
2121
+ (CountlyFeedbackWidget *)createWithDictionary:(NSDictionary *)dictionary;
2222
@end
2323

24-
NSString* const kCountlyReactNativeSDKVersion = @"21.11.2";
24+
NSString* const kCountlyReactNativeSDKVersion = @"22.02.0";
2525
NSString* const kCountlyReactNativeSDKName = @"js-rnb-ios";
2626

2727
CountlyConfig* config = nil;

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": "21.11.2",
3+
"version": "22.02.0",
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)