Skip to content

Commit 582de4f

Browse files
authored
Merge pull request #317 from Countly/android_upgrade
24.11.2
2 parents 5e5a57b + 6b91d68 commit 582de4f

File tree

14 files changed

+26
-13
lines changed

14 files changed

+26
-13
lines changed

CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 24.11.2
2+
* Improved view tracking capabilities in iOS.
3+
4+
* Mitigated issues where:
5+
* On Android 35 and above, the navigation bar was overlapping with the content display in Android.
6+
* An automatically closed autoStopped view's duration could have increased when opening new views in Android.
7+
* A concurrent modification error could have happen when starting multiple stopped views in iOS.
8+
9+
* Updated underlying Android SDK version to 24.7.7
10+
* Updated underlying iOS SDK version to 24.7.9
11+
112
## 24.11.1
213
* Added content configuration interface that has `setGlobalContentCallback` to get notified about content changes.
314
* Added support for localization of content blocks.
@@ -10,7 +21,6 @@
1021
* Mitigated issues where:
1122
* Passing the global content callback was not possible in Android.
1223
* The user provided URLSessionConfiguration was not applied to direct requests in iOS.
13-
* A concurrent modification error could have happen when starting multiple stopped views in iOS.
1424

1525
* Updated underlying Android SDK version to 24.7.6
1626
* Updated underlying iOS SDK version to 24.7.8

android/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ android {
3838
}
3939

4040
dependencies {
41-
implementation 'ly.count.android:sdk:24.7.6'
41+
implementation 'ly.count.android:sdk:24.7.7'
4242
implementation 'com.google.firebase:firebase-messaging:24.0.3'
4343
}

android/src/main/java/ly/count/dart/countly_flutter/CountlyFlutterPlugin.java

+1-1
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.1";
70+
private final String COUNTLY_FLUTTER_SDK_VERSION_STRING = "24.11.2";
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

+1-1
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.1');
32+
expect(requestObject['sdk_version']?[0], '24.11.2');
3333
expect(requestObject['av']?[0], Platform.isIOS ? '0.0.1' : '1.0.0');
3434
assert(requestObject['timestamp']?[0] != null);
3535

ios/Classes/CountlyFlutterPlugin.m

+1-1
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.1";
31+
NSString *const kCountlyFlutterSDKVersion = @"24.11.2";
3232
NSString *const kCountlyFlutterSDKName = @"dart-flutterb-ios";
3333
NSString *const kCountlyFlutterSDKNameNoPush = @"dart-flutterbnp-ios";
3434

ios/Classes/CountlyiOS/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 24.7.9
2+
* Improved view tracking capabilities
3+
14
## 24.7.8
25
* Added support for localization of content blocks.
36

ios/Classes/CountlyiOS/Countly-PL.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'Countly-PL'
3-
s.version = '24.7.8'
3+
s.version = '24.7.9'
44
s.license = { :type => 'MIT', :file => 'LICENSE' }
55
s.summary = 'Countly is an innovative, real-time, open source mobile analytics platform.'
66
s.homepage = 'https://github.com/Countly/countly-sdk-ios'

ios/Classes/CountlyiOS/Countly.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'Countly'
3-
s.version = '24.7.8'
3+
s.version = '24.7.9'
44
s.license = { :type => 'MIT', :file => 'LICENSE' }
55
s.summary = 'Countly is an innovative, real-time, open source mobile analytics platform.'
66
s.homepage = 'https://github.com/Countly/countly-sdk-ios'

ios/Classes/CountlyiOS/CountlyCommon.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ @interface CountlyCommon ()
2929
#endif
3030
@end
3131

32-
NSString* const kCountlySDKVersion = @"24.7.8";
32+
NSString* const kCountlySDKVersion = @"24.7.9";
3333
NSString* const kCountlySDKName = @"objc-native-ios";
3434

3535
NSString* const kCountlyErrorDomain = @"ly.count.ErrorDomain";

ios/countly_flutter.podspec

+1-1
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.1'
6+
s.version = '24.11.2'
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

+1-1
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.1
3+
version: 24.11.2
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ android {
3434
}
3535

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

scripts/no-push-files/countly_flutter_np.podspec

+1-1
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.1'
6+
s.version = '24.11.2'
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

+1-1
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.1
4+
version: 24.11.2
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)