Skip to content

Commit 9cf751e

Browse files
authored
Merge pull request #329 from Countly/zone_timer
fix: update missing versions
2 parents 5c19e7c + 562e7b1 commit 9cf751e

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
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
@@ -67,7 +67,7 @@
6767
*/
6868
public class CountlyFlutterPlugin implements MethodCallHandler, FlutterPlugin, ActivityAware, DefaultLifecycleObserver {
6969
private static final String TAG = "CountlyFlutterPlugin";
70-
private final String COUNTLY_FLUTTER_SDK_VERSION_STRING = "24.11.2";
70+
private final String COUNTLY_FLUTTER_SDK_VERSION_STRING = "25.1.0";
7171
private final String COUNTLY_FLUTTER_SDK_NAME = "dart-flutterb-android";
7272
private final String COUNTLY_FLUTTER_SDK_NAME_NO_PUSH = "dart-flutterbnp-android";
7373

example/integration_test/utils.dart

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

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.11.2";
31+
NSString *const kCountlyFlutterSDKVersion = @"25.1.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.11.2'
6+
s.version = '25.1.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.11.2
3+
version: 25.1.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/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.11.2'
6+
s.version = '25.1.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.11.2
4+
version: 25.1.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)