Skip to content

Commit 6cdabd5

Browse files
Updated underlying android SDK to 21.11.2 (#89)
* Updating changelog with underlying SDK changes * Changelog updated * Updated underlying android SDK to 21.11.2 * Update CHANGELOG.md Co-authored-by: ArtursKadikis <[email protected]>
1 parent 11a8c12 commit 6cdabd5

File tree

7 files changed

+19
-6
lines changed

7 files changed

+19
-6
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
1+
## 21.11.1
2+
* Fixed bug that caused crashes when migrating from older versions on Android devices.
3+
* Updated underlying android SDK version to 21.11.2
4+
* Underlying iOS SDK version is 21.11.2
5+
16
## 21.11.0
7+
* !! Major breaking change !! Deprecating "ADVERTISING_ID" as device ID generation strategy. SDK will fall back to 'OPEN_UDID'. All "ADVERTISING_ID" device ID's will have their type changed to "OPEN_UDID". If the device will have a "null" device ID, a random one will be generated.
28
* !! Major breaking change !! Changing device ID without merging will now clear all consent. It has to be given again after this operation.
39
* !! Major breaking change !! Entering temporary ID mode will now clear all consent. It has to be given again after this operation.
10+
* Device ID can now be changed when no consent is given
11+
* Push notification now display/use the sent badge number in Android. It's visualization depends on the launcher.
12+
* When recording internal events with 'recordEvent', the respective feature consent will now be checked instead of the 'events' consent.
13+
* Consent changes will now send the whole consent state and not just the "delta"
414
* Added ability to add custom sound effect for android push notifications.
15+
* Added platform information to push actioned events
16+
* Fixed potential deadlock issue in Android.
17+
* Fixed possible SecTrustCopyExceptions leak in iOS
518
* Deprecated 'askForFeedback' method. Added 'presentRatingWidgetWithID' method that should be used as it's replacement.
619
* Updated minimum supported iOS versions to 10.0
720
* Updated underlying android SDK version to 21.11.0

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.0'
3+
s.version = '21.11.1'
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.0'
44+
implementation 'ly.count.android:sdk:21.11.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
@@ -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.0";
82+
private String COUNTLY_RN_SDK_VERSION_STRING = "21.11.1";
8383
private String COUNTLY_RN_SDK_NAME = "js-rnb-android";
8484

8585
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-
14+
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.0";
24+
NSString* const kCountlyReactNativeSDKVersion = @"21.11.1";
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.0",
3+
"version": "21.11.1",
44
"author": "Countly <[email protected]> (https://count.ly/)",
55
"bugs": {
66
"url": "https://github.com/Countly/countly-sdk-react-native-bridge/issues"

0 commit comments

Comments
 (0)