diff --git a/CHANGELOG.md b/CHANGELOG.md index 325f8fd3..60e9cbc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 23.2.1 +* 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 +* Fixed a bug in Android where orientation events would have the same view ID as the previous view event +* Fixed a bug in Android where view ID's were being reported incorrectly +* Updated Underlying android SDK version to 22.09.1 +* Underlying iOS SDK version is 23.02.0 + ## 23.2.0 * !! Major breaking change !! Resolved issue with handling push notification actions on iOS. * To handle push notification actions, add the following call "CountlyFlutterPlugin.startObservingNotifications();" to "AppDelegate.swift" diff --git a/android/build.gradle b/android/build.gradle index 0aaa855c..eb1f550b 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -34,6 +34,6 @@ android { } dependencies { - implementation 'ly.count.android:sdk:22.09.0' + implementation 'ly.count.android:sdk:22.09.1' implementation 'com.google.firebase:firebase-messaging:20.2.1' } diff --git a/android/src/main/java/ly/count/dart/countly_flutter/CountlyFlutterPlugin.java b/android/src/main/java/ly/count/dart/countly_flutter/CountlyFlutterPlugin.java index afbe6ef9..ab5df56d 100644 --- a/android/src/main/java/ly/count/dart/countly_flutter/CountlyFlutterPlugin.java +++ b/android/src/main/java/ly/count/dart/countly_flutter/CountlyFlutterPlugin.java @@ -58,7 +58,7 @@ */ public class CountlyFlutterPlugin implements MethodCallHandler, FlutterPlugin, ActivityAware, DefaultLifecycleObserver { private static final String TAG = "CountlyFlutterPlugin"; - private final String COUNTLY_FLUTTER_SDK_VERSION_STRING = "23.2.0"; + private final String COUNTLY_FLUTTER_SDK_VERSION_STRING = "23.2.1"; private final String COUNTLY_FLUTTER_SDK_NAME = "dart-flutterb-android"; private final String COUNTLY_FLUTTER_SDK_NAME_NO_PUSH = "dart-flutterbnp-android"; diff --git a/example-no-push/android/app/build.gradle b/example-no-push/android/app/build.gradle index ab2ae359..7236aa2d 100644 --- a/example-no-push/android/app/build.gradle +++ b/example-no-push/android/app/build.gradle @@ -59,6 +59,6 @@ dependencies { testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' - implementation 'ly.count.android:sdk:22.09.0' + implementation 'ly.count.android:sdk:22.09.1' } diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle index a2a046d5..1e00687f 100644 --- a/example/android/app/build.gradle +++ b/example/android/app/build.gradle @@ -59,7 +59,7 @@ dependencies { testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' - implementation 'ly.count.android:sdk:22.09.0' + implementation 'ly.count.android:sdk:22.09.1' implementation 'com.google.firebase:firebase-messaging:20.2.1' } apply plugin: 'com.google.gms.google-services' // Google Play services Gradle plugin diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index fa505f6e..bbea6997 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -1,5 +1,5 @@ PODS: - - countly_flutter (23.02.0): + - countly_flutter (23.2.1): - Flutter - Flutter (1.0.0) @@ -14,7 +14,7 @@ EXTERNAL SOURCES: :path: Flutter SPEC CHECKSUMS: - countly_flutter: 135f1a4930f8e26ba223a14201d3f265ea7b4c83 + countly_flutter: 7f716cfa98918f50ecd38a6b705ac581d573d977 Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854 PODFILE CHECKSUM: ef19549a9bc3046e7bb7d2fab4d021637c0c58a3 diff --git a/ios/Classes/CountlyFlutterPlugin.m b/ios/Classes/CountlyFlutterPlugin.m index 988370fc..efe4917f 100644 --- a/ios/Classes/CountlyFlutterPlugin.m +++ b/ios/Classes/CountlyFlutterPlugin.m @@ -23,7 +23,7 @@ + (CountlyFeedbackWidget *)createWithDictionary:(NSDictionary *)dictionary; CLYPushTestMode const CLYPushTestModeProduction = @"CLYPushTestModeProduction"; -NSString *const kCountlyFlutterSDKVersion = @"23.2.0"; +NSString *const kCountlyFlutterSDKVersion = @"23.2.1"; NSString *const kCountlyFlutterSDKName = @"dart-flutterb-ios"; NSString *const kCountlyFlutterSDKNameNoPush = @"dart-flutterbnp-ios"; diff --git a/ios/countly_flutter.podspec b/ios/countly_flutter.podspec index b6fb4b53..92fd39c5 100644 --- a/ios/countly_flutter.podspec +++ b/ios/countly_flutter.podspec @@ -3,7 +3,7 @@ # Pod::Spec.new do |s| s.name = 'countly_flutter' - s.version = '23.2.0' + s.version = '23.2.1' s.summary = 'Countly is an innovative, real-time, open source mobile analytics platform.' s.homepage = 'https://github.com/Countly/countly-sdk-flutter-bridge' s.social_media_url = 'https://twitter.com/gocountly' diff --git a/pubspec.yaml b/pubspec.yaml index 00defa9c..d8026595 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: countly_flutter description: Countly is an innovative, real-time, open source mobile analytics and push notifications platform. -version: 23.2.0 +version: 23.2.1 homepage: https://support.count.ly/hc/en-us/articles/360037944212-Flutter environment: diff --git a/scripts/no-push-files/build.gradle b/scripts/no-push-files/build.gradle index 12a00799..7981236b 100644 --- a/scripts/no-push-files/build.gradle +++ b/scripts/no-push-files/build.gradle @@ -34,5 +34,5 @@ android { } dependencies { - implementation 'ly.count.android:sdk:22.09.0' + implementation 'ly.count.android:sdk:22.09.1' } diff --git a/scripts/no-push-files/countly_flutter_np.podspec b/scripts/no-push-files/countly_flutter_np.podspec index 53ee2e66..6319a464 100644 --- a/scripts/no-push-files/countly_flutter_np.podspec +++ b/scripts/no-push-files/countly_flutter_np.podspec @@ -3,7 +3,7 @@ # Pod::Spec.new do |s| s.name = 'countly_flutter_np' - s.version = '23.2.0' + s.version = '23.2.1' s.summary = 'Countly is an innovative, real-time, open source mobile analytics platform.' s.homepage = 'https://github.com/Countly/countly-sdk-flutter-bridge' s.social_media_url = 'https://twitter.com/gocountly' diff --git a/scripts/no-push-files/pubspec.yaml b/scripts/no-push-files/pubspec.yaml index 877c7ca0..f77ff22d 100644 --- a/scripts/no-push-files/pubspec.yaml +++ b/scripts/no-push-files/pubspec.yaml @@ -1,6 +1,6 @@ name: countly_flutter_np description: Countly is an innovative, real-time, open source mobile analytics. This plugin is a flavour of the SDK without push notifications. -version: 23.2.0 +version: 23.2.1 homepage: https://support.count.ly/hc/en-us/articles/360037944212-Flutter environment: