Skip to content

Commit 589decb

Browse files
committed
Merge branch 'staging' of https://github.com/Countly/countly-sdk-flutter-bridge into staging-np
2 parents 25db5e8 + 14c9f44 commit 589decb

File tree

12 files changed

+21
-13
lines changed

12 files changed

+21
-13
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 23.2.1
2+
* Fixed a bug in Android where metric override values were not applying to crash metrics Fixed a bug where crash metrics sent the "manufacturer" value under the wrong key
3+
* Fixed a bug in Android where orientation events would have the same view ID as the previous view event
4+
* Fixed a bug in Android where view ID's were being reported incorrectly
5+
* Updated Underlying android SDK version to 22.09.1
6+
* Underlying iOS SDK version is 23.02.0
7+
18
## 23.2.0
29
* !! Major breaking change !! Resolved issue with handling push notification actions on iOS.
310
* To handle push notification actions, add the following call "CountlyFlutterPlugin.startObservingNotifications();" to "AppDelegate.swift"
@@ -7,8 +14,10 @@
714
* Events are now recorded with an internal ID in Android.
815
* Updated Underlying android SDK version to 22.09.0
916
* Updated Underlying iOS SDK version to 23.02.0
10-
*
17+
1118
## 23.2.0-np
19+
* 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.
20+
* Events are now recorded with an internal ID in Android.
1221
* Updated Underlying android SDK version to 22.09.0
1322
* Updated Underlying iOS SDK version to 23.02.0
1423

android/build.gradle

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

3636
dependencies {
37-
implementation 'ly.count.android:sdk:22.09.0'
37+
implementation 'ly.count.android:sdk:22.09.1'
3838
}

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 = "23.2.0";
61+
private final String COUNTLY_FLUTTER_SDK_VERSION_STRING = "23.2.1";
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.09.0'
62+
implementation 'ly.count.android:sdk:22.09.1'
6363
}
6464

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.09.0'
62+
implementation 'ly.count.android:sdk:22.09.1'
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PODS:
2-
- countly_flutter (23.02.0):
2+
- countly_flutter (23.2.1):
33
- Flutter
44
- Flutter (1.0.0)
55

@@ -14,7 +14,7 @@ EXTERNAL SOURCES:
1414
:path: Flutter
1515

1616
SPEC CHECKSUMS:
17-
countly_flutter: 135f1a4930f8e26ba223a14201d3f265ea7b4c83
17+
countly_flutter: 7f716cfa98918f50ecd38a6b705ac581d573d977
1818
Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
1919

2020
PODFILE CHECKSUM: ef19549a9bc3046e7bb7d2fab4d021637c0c58a3

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 = @"23.2.0";
26+
NSString *const kCountlyFlutterSDKVersion = @"23.2.1";
2727
NSString *const kCountlyFlutterSDKName = @"dart-flutterb-ios";
2828
NSString *const kCountlyFlutterSDKNameNoPush = @"dart-flutterbnp-ios";
2929

ios/countly_flutter_np.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
Pod::Spec.new do |s|
55
s.name = 'countly_flutter_np'
6-
s.version = '23.2.0'
6+
s.version = '23.2.1'
77
s.summary = 'Countly is an innovative, real-time, open source mobile analytics platform.'
88
s.homepage = 'https://github.com/Countly/countly-sdk-flutter-bridge'
99
s.social_media_url = 'https://twitter.com/gocountly'

pubspec.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
name: countly_flutter_np
22
description: Countly is an innovative, real-time, open source mobile analytics. This plugin is a flavour of the SDK without push notifications.
3-
version: 23.2.0
43
homepage: https://support.count.ly/hc/en-us/articles/360037944212-Flutter
54

65
environment:

scripts/no-push-files/build.gradle

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

3636
dependencies {
37-
implementation 'ly.count.android:sdk:22.09.0'
37+
implementation 'ly.count.android:sdk:22.09.1'
3838
}

0 commit comments

Comments
 (0)