Skip to content

Commit 227b637

Browse files
authored
Merge pull request #335 from Countly/ios2511
feat: iOS 25.1.1
2 parents 4ddb464 + 21d98e9 commit 227b637

File tree

8 files changed

+19
-11
lines changed

8 files changed

+19
-11
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,10 @@
4646
* Enhanced CertificateTrustManager to support domain-specific configurations with hostname-aware checkServerTrusted calls (Android).
4747

4848
* Fixed an issue where the build UUID and executable name were missing from crash reports (iOS).
49+
* Mitigated an issue while setting zone timer interval for content (iOS).
4950

5051
* Updated underlying Android SDK version to 25.1.1
51-
* Updated underlying iOS SDK version to 25.1.0
52+
* Updated underlying iOS SDK version to 25.1.1
5253
* Added underlying Web SDK version to 25.1.0
5354

5455
## 24.11.2

example/integration_test/device_id_test.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import 'dart:convert';
22
import 'dart:html';
33
import 'package:countly_flutter/countly_flutter.dart';
4+
import 'package:flutter/foundation.dart';
45
import 'package:flutter_test/flutter_test.dart';
56
import 'package:integration_test/integration_test.dart';
67

@@ -10,6 +11,9 @@ import 'utils.dart';
1011
void main() {
1112
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
1213

14+
if(!kIsWeb){
15+
return;
16+
}
1317
group("Device ID change tests", () {
1418
tearDown(() async {
1519
await Countly.instance.halt();

example/ios/Podfile.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PODS:
2-
- countly_flutter (24.11.1):
2+
- countly_flutter (25.1.0):
33
- Flutter
44
- Flutter (1.0.0)
55
- flutter_foreground_task (0.0.1):
@@ -30,12 +30,12 @@ EXTERNAL SOURCES:
3030
:path: ".symlinks/plugins/shared_preferences_foundation/darwin"
3131

3232
SPEC CHECKSUMS:
33-
countly_flutter: 6a2ccd4c63c21c2fea1ab58e14d03fecc03a00fa
33+
countly_flutter: 28d939005bd5d07e8632f43e8ae9bda3b1271d17
3434
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
3535
flutter_foreground_task: 21ef182ab0a29a3005cc72cd70e5f45cb7f7f817
36-
integration_test: ce0a3ffa1de96d1a89ca0ac26fca7ea18a749ef4
37-
shared_preferences_foundation: fcdcbc04712aee1108ac7fda236f363274528f78
36+
integration_test: 13825b8a9334a850581300559b8839134b124670
37+
shared_preferences_foundation: b4c3b4cddf1c21f02770737f147a3f5da9d39695
3838

3939
PODFILE CHECKSUM: 4e8f8b2be68aeea4c0d5beb6ff1e79fface1d048
4040

41-
COCOAPODS: 1.15.2
41+
COCOAPODS: 1.14.3

ios/Classes/CountlyiOS/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 25.1.1
2+
* Mitigated an issue while setting zone timer interval for content.
3+
14
## 25.1.0
25
* Added dynamic resizing functionality for the content zone
36
* Added a config option to content (setZoneTimerInterval) to set content zone timer. (Experimental!)

ios/Classes/CountlyiOS/Countly-PL.podspec

Lines changed: 1 addition & 1 deletion
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 = '25.1.0'
3+
s.version = '25.1.1'
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

Lines changed: 1 addition & 1 deletion
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 = '25.1.0'
3+
s.version = '25.1.1'
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ @interface CountlyCommon ()
2929
#endif
3030
@end
3131

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

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

ios/Classes/CountlyiOS/CountlyContentConfig.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ - (instancetype)init
2727
#if (TARGET_OS_IOS)
2828
-(void)setGlobalContentCallback:(ContentCallback) callback
2929
{
30-
self.contentCallback = callback;
30+
_contentCallback = callback;
3131
}
3232

3333
- (ContentCallback) getGlobalContentCallback
3434
{
35-
return self.contentCallback;
35+
return _contentCallback;
3636
}
3737

3838

0 commit comments

Comments
 (0)