Skip to content

Commit 49d3b60

Browse files
authored
Updated SDK version to 23.02.0 (#96)
* Updated Underlying android SDK version to 22.09.0 * Changelog updated * Updated Underlying iOS SDK version to 23.02.0 * Updated SDK version to 23.02.0
1 parent 21f7679 commit 49d3b60

File tree

24 files changed

+109
-45
lines changed

24 files changed

+109
-45
lines changed

CHANGELOG.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
1-
## 22.09.1
1+
## 23.02.0
22
* !! Major breaking change !! Resolved issue with handling push notification actions on iOS.
33
* To handle push notification actions, add the following call "CountlyFlutterPlugin.startObservingNotifications();" to "AppDelegate.swift"
44
* For further information, refer to the "Handling Push Callbacks" section of the Countly SDK documentation at:
55
https://support.count.ly/hc/en-us/articles/360037944212-Flutter#handling-push-callbacks.
6-
* Underlying android SDK version is 22.06.2
7-
* Underlying iOS SDK version is 22.09.0
6+
* Fixed a race condition bug in Android where a recorded event would have the wrong user properties in the drill database on the server. Now event queue is emptied (formed into a request) before recording any user profile changes.
7+
* Events are now recorded with an internal ID in Android.
8+
* Updated Underlying android SDK version to 22.09.0
9+
* Updated Underlying iOS SDK version to 23.02.0
810
*
9-
## 22.09.1-np
10-
* Underlying android SDK version is 22.06.2
11-
* Underlying iOS SDK version is 22.09.0
11+
## 23.02.0-np
12+
* Updated Underlying android SDK version to 22.09.0
13+
* Updated Underlying iOS SDK version to 23.02.0
1214

1315
## 22.09.0
1416
* Fixed "isInitialized" variable reset on hot reload.

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ android {
3434
}
3535

3636
dependencies {
37-
implementation 'ly.count.android:sdk:22.06.2'
37+
implementation 'ly.count.android:sdk:22.09.0'
3838
implementation 'com.google.firebase:firebase-messaging:20.2.1'
3939
}

android/src/main/java/ly/count/dart/countly_flutter/CountlyFlutterPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
*/
5959
public class CountlyFlutterPlugin implements MethodCallHandler, FlutterPlugin, ActivityAware, DefaultLifecycleObserver {
6060
private static final String TAG = "CountlyFlutterPlugin";
61-
private final String COUNTLY_FLUTTER_SDK_VERSION_STRING = "22.09.1";
61+
private final String COUNTLY_FLUTTER_SDK_VERSION_STRING = "23.02.0";
6262
private final String COUNTLY_FLUTTER_SDK_NAME = "dart-flutterb-android";
6363
private final String COUNTLY_FLUTTER_SDK_NAME_NO_PUSH = "dart-flutterbnp-android";
6464

example-no-push/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@ dependencies {
5959
testImplementation 'junit:junit:4.12'
6060
androidTestImplementation 'com.android.support.test:runner:1.0.2'
6161
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
62-
implementation 'ly.count.android:sdk:22.06.2'
62+
implementation 'ly.count.android:sdk:22.09.0'
6363
}
6464

example-no-push/ios/Podfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PODS:
2-
- countly_flutter (22.09.1):
2+
- countly_flutter (23.02.0):
33
- Flutter
44
- Flutter (1.0.0)
55

example/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ dependencies {
5959
testImplementation 'junit:junit:4.12'
6060
androidTestImplementation 'com.android.support.test:runner:1.0.2'
6161
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
62-
implementation 'ly.count.android:sdk:22.06.2'
62+
implementation 'ly.count.android:sdk:22.09.0'
6363
implementation 'com.google.firebase:firebase-messaging:20.2.1'
6464
}
6565
apply plugin: 'com.google.gms.google-services' // Google Play services Gradle plugin

example/ios/Podfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PODS:
2-
- countly_flutter (22.09.1):
2+
- countly_flutter (23.02.0):
33
- Flutter
44
- Flutter (1.0.0)
55

ios/Classes/CountlyFlutterPlugin.m

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

2424
CLYPushTestMode const CLYPushTestModeProduction = @"CLYPushTestModeProduction";
2525

26-
NSString *const kCountlyFlutterSDKVersion = @"22.09.1";
26+
NSString *const kCountlyFlutterSDKVersion = @"23.02.0";
2727
NSString *const kCountlyFlutterSDKName = @"dart-flutterb-ios";
2828
NSString *const kCountlyFlutterSDKNameNoPush = @"dart-flutterbnp-ios";
2929

ios/Classes/CountlyiOS/CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 23.02.0
2+
- Added event IDs
3+
- Added current and previous view IDs to events
4+
- Added sending pending events before sending user details on `save` call.
5+
6+
7+
18
## 22.09.0
29
- Deleted previously deprecated `userLoggedIn:` and `userLoggedOut` methods
310
- Added new exception recording methods: `recordException:`, `recordException:isFatal:`, `recordException:isFatal:stackTrace:segmentation:`
@@ -7,7 +14,7 @@
714
- Other various improvements
815
- Added device info to SDK initialization logs
916

10-
## 22.06.2
17+
## 22.06.2
1118
- Added direct requests support
1219
- Fixed missing remote config consent in consents request
1320

ios/Classes/CountlyiOS/Countly-PL.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 = 'Countly-PL'
3-
s.version = '22.09.0'
3+
s.version = '23.02.0'
44
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
55
s.summary = 'Countly is an innovative, real-time, open source mobile analytics platform.'
66
s.homepage = 'https://github.com/Countly/countly-sdk-ios'

0 commit comments

Comments
 (0)