Skip to content

Commit 98f9005

Browse files
fix: issue related to data reading on iOS native SDK; chore: bump version to 1.0.6
1 parent d168452 commit 98f9005

File tree

8 files changed

+66
-60
lines changed

8 files changed

+66
-60
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 1.0.6
4+
5+
### Fixed
6+
- Fixed an issue related to data reading on iOS native SDK.
7+
38
## 1.0.5
49

510
### Fixed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ This will add a line like this to your `pubspec.yaml` (and run an implicit `flut
7171

7272
```yaml
7373
dependencies:
74-
clickio_consent_sdk: ^1.0.5
74+
clickio_consent_sdk: ^1.0.6
7575
```
7676
7777
Alternatively, your editor might support `flutter pub get`. Check the docs for your editor to learn more.

example/ios/Podfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
PODS:
22
- clickio_consent_sdk (1.0.1):
3-
- ClickioConsentSDKManager (= 1.0.12-rc)
3+
- ClickioConsentSDKManager (= 1.0.13-rc)
44
- Flutter
5-
- ClickioConsentSDKManager (1.0.12-rc)
5+
- ClickioConsentSDKManager (1.0.13-rc)
66
- Flutter (1.0.0)
77
- integration_test (0.0.1):
88
- Flutter
@@ -25,8 +25,8 @@ EXTERNAL SOURCES:
2525
:path: ".symlinks/plugins/integration_test/ios"
2626

2727
SPEC CHECKSUMS:
28-
clickio_consent_sdk: 6d0f04b13aba6a85636e5def4e71cca25f150459
29-
ClickioConsentSDKManager: 2275218e9eea5f558d3c0f3de3b565fc985bcb7e
28+
clickio_consent_sdk: d3ebbc43371c057c35ba92329616e4291f836c68
29+
ClickioConsentSDKManager: 0c5b457f66b2d5bde58a9d89d7852e10ba65183c
3030
Flutter: cabc95a1d2626b1b06e7179b784ebcf0c0cde467
3131
integration_test: 4a889634ef21a45d28d50d622cf412dc6d9f586e
3232

example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 51 additions & 51 deletions
Large diffs are not rendered by default.

example/lib/main.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ class MyApp extends StatefulWidget {
1616
class _MyAppState extends State<MyApp> {
1717
final clickioConsentSdk = ClickioConsentSdk();
1818
final config = Config(siteId: '241131', language: 'en');
19-
final customUrl = 'https://example.com';
19+
final customUrl =
20+
'https://account.clickio.com/public/test/solveit-demo/tcf-global.html';
2021

2122
Map<String, String?> _consentData = {};
2223

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ packages:
3131
path: ".."
3232
relative: true
3333
source: path
34-
version: "1.0.4"
34+
version: "1.0.6"
3535
clock:
3636
dependency: transitive
3737
description:

ios/clickio_consent_sdk.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ Pod::Spec.new do |s|
1717
s.source_files = 'Classes/**/*'
1818
s.public_header_files = 'Classes/**/*.h'
1919
s.dependency 'Flutter'
20-
s.dependency 'ClickioConsentSDKManager', '1.0.12-rc'
20+
s.dependency 'ClickioConsentSDKManager', '1.0.13-rc'
2121
end

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: clickio_consent_sdk
22
description: "A Flutter plugin for Clickio Consent SDK. Supports iOS and Android."
3-
version: 1.0.5
3+
version: 1.0.6
44
homepage: https://clickio.com/
55
repository: https://github.com/ClickioTech/clickio_consent_sdk_flutter
66
issue_tracker: https://github.com/ClickioTech/clickio_consent_sdk_flutter/issues

0 commit comments

Comments
 (0)