From dd2f8c1e4da30adf169c338d8c70f6aeb7eaea46 Mon Sep 17 00:00:00 2001 From: ijunaid Date: Wed, 21 Feb 2024 18:02:10 +0500 Subject: [PATCH] Updated SDK version to 24.1.1 (#201) * Updated SDK version to 24.1.1 * Updated changelog * changelog * space --------- Co-authored-by: turtledreams <62231246+turtledreams@users.noreply.github.com> --- CHANGELOG.md | 12 ++++++++++++ android/build.gradle | 2 +- .../dart/countly_flutter/CountlyFlutterPlugin.java | 2 +- example/android/app/build.gradle | 2 +- example/integration_test/utils.dart | 2 +- ios/Classes/CountlyFlutterPlugin.m | 2 +- ios/countly_flutter.podspec | 2 +- pubspec.yaml | 2 +- scripts/no-push-files/build.gradle | 2 +- scripts/no-push-files/countly_flutter_np.podspec | 2 +- scripts/no-push-files/pubspec.yaml | 2 +- 11 files changed, 22 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 133f2e80..b06a62bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## 24.1.1 +* Added a new metric for detecting whether or not a device has a hinge for Android + +* Updated underlying Android SDK version to 24.1.1 +* Underlying iOS SDK version is 24.1.0 + +## 24.1.1-np +* Added a new metric for detecting whether or not a device has a hinge for Android + +* Updated underlying Android SDK version to 24.1.1 +* Underlying iOS SDK version is 24.1.0 + ## 24.1.0 * ! Minor breaking change ! Tracking of foreground and background time for APM is disabled by default diff --git a/android/build.gradle b/android/build.gradle index 04929daf..355c8c1a 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -34,6 +34,6 @@ android { } dependencies { - implementation 'ly.count.android:sdk:24.1.0' + implementation 'ly.count.android:sdk:24.1.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 5b2f6a24..22459f91 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 @@ -66,7 +66,7 @@ */ public class CountlyFlutterPlugin implements MethodCallHandler, FlutterPlugin, ActivityAware, DefaultLifecycleObserver { private static final String TAG = "CountlyFlutterPlugin"; - private final String COUNTLY_FLUTTER_SDK_VERSION_STRING = "24.1.0"; + private final String COUNTLY_FLUTTER_SDK_VERSION_STRING = "24.1.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/android/app/build.gradle b/example/android/app/build.gradle index 7ff69d1e..d37cf104 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:24.1.0' + implementation 'ly.count.android:sdk:24.1.1' implementation 'com.google.firebase:firebase-messaging:20.2.1' implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.8.0")) } diff --git a/example/integration_test/utils.dart b/example/integration_test/utils.dart index 116967fe..75f9c91b 100644 --- a/example/integration_test/utils.dart +++ b/example/integration_test/utils.dart @@ -26,7 +26,7 @@ Future> getEventQueue() async { void testCommonRequestParams(Map> requestObject) { expect(requestObject['app_key']?[0], APP_KEY); expect(requestObject['sdk_name']?[0], "dart-flutterb-${Platform.isIOS ? "ios" : "android"}"); - expect(requestObject['sdk_version']?[0], '24.1.0'); + expect(requestObject['sdk_version']?[0], '24.1.1'); expect(requestObject['av']?[0], Platform.isIOS ? '0.0.1' : '1.0.0'); assert(requestObject['timestamp']?[0] != null); diff --git a/ios/Classes/CountlyFlutterPlugin.m b/ios/Classes/CountlyFlutterPlugin.m index c725a4ce..e6854588 100644 --- a/ios/Classes/CountlyFlutterPlugin.m +++ b/ios/Classes/CountlyFlutterPlugin.m @@ -28,7 +28,7 @@ @interface CountlyPersistency () CLYPushTestMode const CLYPushTestModeProduction = @"CLYPushTestModeProduction"; -NSString *const kCountlyFlutterSDKVersion = @"24.1.0"; +NSString *const kCountlyFlutterSDKVersion = @"24.1.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 8eaa10c1..6a0d3cd5 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 = '24.1.0' + s.version = '24.1.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 b0e5f189..9762fd13 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: 24.1.0 +version: 24.1.1 homepage: https://support.count.ly/hc/en-us/articles/360037944212 repository: https://github.com/Countly/countly-sdk-flutter-bridge issue_tracker: https://github.com/Countly/countly-sdk-flutter-bridge/issues diff --git a/scripts/no-push-files/build.gradle b/scripts/no-push-files/build.gradle index 5710e2d3..aed5f48b 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:24.1.0' + implementation 'ly.count.android:sdk:24.1.1' } diff --git a/scripts/no-push-files/countly_flutter_np.podspec b/scripts/no-push-files/countly_flutter_np.podspec index 4e621e77..7279c56c 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 = '24.1.0' + s.version = '24.1.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 e3bf37a1..93edf2fe 100644 --- a/scripts/no-push-files/pubspec.yaml +++ b/scripts/no-push-files/pubspec.yaml @@ -1,7 +1,7 @@ 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: 24.1.0 +version: 24.1.1 homepage: https://support.count.ly/hc/en-us/articles/360037944212-Flutter repository: https://github.com/Countly/countly-sdk-flutter-bridge issue_tracker: https://github.com/Countly/countly-sdk-flutter-bridge/issues