Skip to content

Commit a421556

Browse files
authored
Merge pull request #218 from Countly/version-update
Version update to 24.4.0
2 parents 579a4c2 + 04f05fc commit a421556

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

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
@@ -66,7 +66,7 @@
6666
*/
6767
public class CountlyFlutterPlugin implements MethodCallHandler, FlutterPlugin, ActivityAware, DefaultLifecycleObserver {
6868
private static final String TAG = "CountlyFlutterPlugin";
69-
private final String COUNTLY_FLUTTER_SDK_VERSION_STRING = "24.1.1";
69+
private final String COUNTLY_FLUTTER_SDK_VERSION_STRING = "24.4.0";
7070
private final String COUNTLY_FLUTTER_SDK_NAME = "dart-flutterb-android";
7171
private final String COUNTLY_FLUTTER_SDK_NAME_NO_PUSH = "dart-flutterbnp-android";
7272

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:24.1.1'
62+
implementation 'ly.count.android:sdk:24.4.0'
6363
implementation 'com.google.firebase:firebase-messaging:20.2.1'
6464
implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.8.0"))
6565
}

example/integration_test/utils.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Future<List<String>> getEventQueue() async {
2727
void testCommonRequestParams(Map<String, List<String>> requestObject) {
2828
expect(requestObject['app_key']?[0], APP_KEY);
2929
expect(requestObject['sdk_name']?[0], "dart-flutterb-${Platform.isIOS ? "ios" : "android"}");
30-
expect(requestObject['sdk_version']?[0], '24.1.1');
30+
expect(requestObject['sdk_version']?[0], '24.4.0');
3131
expect(requestObject['av']?[0], Platform.isIOS ? '0.0.1' : '1.0.0');
3232
assert(requestObject['timestamp']?[0] != null);
3333

ios/Classes/CountlyFlutterPlugin.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ @interface CountlyPersistency ()
2828

2929
CLYPushTestMode const CLYPushTestModeProduction = @"CLYPushTestModeProduction";
3030

31-
NSString *const kCountlyFlutterSDKVersion = @"24.1.1";
31+
NSString *const kCountlyFlutterSDKVersion = @"24.4.0";
3232
NSString *const kCountlyFlutterSDKName = @"dart-flutterb-ios";
3333
NSString *const kCountlyFlutterSDKNameNoPush = @"dart-flutterbnp-ios";
3434

ios/countly_flutter.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'
6-
s.version = '24.1.1'
6+
s.version = '24.4.0'
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: countly_flutter
22
description: Countly is an innovative, real-time, open source mobile analytics and push notifications platform.
3-
version: 24.1.1
3+
version: 24.4.0
44
homepage: https://support.count.ly/hc/en-us/articles/360037944212
55
repository: https://github.com/Countly/countly-sdk-flutter-bridge
66
issue_tracker: https://github.com/Countly/countly-sdk-flutter-bridge/issues

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:24.1.1'
37+
implementation 'ly.count.android:sdk:24.4.0'
3838
}

scripts/no-push-files/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 = '24.1.1'
6+
s.version = '24.4.0'
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'

scripts/no-push-files/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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.
33

4-
version: 24.1.1
4+
version: 24.4.0
55
homepage: https://support.count.ly/hc/en-us/articles/360037944212-Flutter
66
repository: https://github.com/Countly/countly-sdk-flutter-bridge
77
issue_tracker: https://github.com/Countly/countly-sdk-flutter-bridge/issues

0 commit comments

Comments
 (0)