Skip to content

Commit

Permalink
Updated sdk version and android sdk version. (#91)
Browse files Browse the repository at this point in the history
* Updated sdk version and android sdk version.

* Create CHANGELOG.md

* removing .tgz files

Co-authored-by: ArtursKadikis <kadikis.arturs@gmail.com>
  • Loading branch information
ijunaid and ArtursKadikis committed Aug 5, 2022
1 parent 01f1a2c commit 660d0d2
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 22.02.0
* Fixed notification trampoline restrictions in Android 12 using reverse activity trampolining implementation.
* Updated underlying android SDK version to 22.02.0
* Underlying iOS SDK version is 21.11.2

## 21.11.2
* Fixed iOS push notification open url issue when notification is cached.
* Underlying android SDK version is 21.11.2
Expand Down
2 changes: 1 addition & 1 deletion CountlyReactNative.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'CountlyReactNative'
s.version = '21.11.2'
s.version = '22.02.0'
s.license = {
:type => 'COMMUNITY',
:text => <<-LICENSE
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ repositories {

dependencies {
implementation "com.facebook.react:react-native:${safeExtGet('reactNativeVersion', '+')}"
implementation 'ly.count.android:sdk:21.11.2'
implementation 'ly.count.android:sdk:22.02.0'

// Import the BoM for the Firebase platform
// The BoM version of 28.4.2 is the newest release that will target firebase-messaging version 22
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public String toString(){
public class CountlyReactNative extends ReactContextBaseJavaModule implements LifecycleEventListener {

public static final String TAG = "CountlyRNPlugin";
private String COUNTLY_RN_SDK_VERSION_STRING = "21.11.2";
private String COUNTLY_RN_SDK_VERSION_STRING = "22.02.0";
private String COUNTLY_RN_SDK_NAME = "js-rnb-android";

private static final CountlyConfig config = new CountlyConfig();
Expand Down
Binary file removed countly-sdk-react-native-bridge-21.11.0.tgz
Binary file not shown.
2 changes: 1 addition & 1 deletion example/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ rm App.js
curl https://raw.githubusercontent.com/Countly/countly-sdk-react-native-bridge/master/example/App.js --output App.js
curl https://raw.githubusercontent.com/Countly/countly-sdk-react-native-bridge/master/example/Example.js --output Example.js

yarn add countly-sdk-react-native-bridge@21.11.2
yarn add countly-sdk-react-native-bridge@22.02.0

cd ./ios
pod install
Expand Down
2 changes: 1 addition & 1 deletion ios/src/CountlyReactNative.m
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ @interface CountlyFeedbackWidget ()
+ (CountlyFeedbackWidget *)createWithDictionary:(NSDictionary *)dictionary;
@end

NSString* const kCountlyReactNativeSDKVersion = @"21.11.2";
NSString* const kCountlyReactNativeSDKVersion = @"22.02.0";
NSString* const kCountlyReactNativeSDKName = @"js-rnb-ios";

CountlyConfig* config = nil;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "countly-sdk-react-native-bridge",
"version": "21.11.2",
"version": "22.02.0",
"author": "Countly <hello@count.ly> (https://count.ly/)",
"bugs": {
"url": "https://github.com/Countly/countly-sdk-react-native-bridge/issues"
Expand Down

0 comments on commit 660d0d2

Please sign in to comment.