Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
[Release Notes](https://docs.usercentrics.com/cmp_in_app_sdk/latest/about/history/)
### 2.30.0 – Aug 19, 2026
## Features
* **[Unity — Mediation]** Added support for Unity's End-User Consent Mode API (`EndUserConsent.SetConsentState`), mapping UC consent decisions to Unity Vector's `AnalyticsIntent`/`AdsIntent` signals — unblocks Unity Ads Vector adoption. Also fixed the dead Unity Ads link in the Consent Mediation docs
* **[Android]** Added APIs to capture and restore in-flight 2nd-layer consent state across Activity recreation (e.g. dark-mode toggles, single-activity navigation hosts), so unsaved user selections are no longer lost
* **[Flutter]** Added Swift Package Manager (SPM) support for the iOS plugin, recommended for Xcode 15+, alongside continued CocoaPods compatibility

## Fixes
* **[Android — Mediation]** Fixed `CrashlyticsMediationSDK` throwing `NoClassDefFoundError` on Firebase BOM 34+ by resolving `FirebaseCrashlytics` via reflection instead of the removed KTX API
* **[Unity/Android]** Fixed a crash during SDK initialization in Unity Development builds on Android (Production builds were unaffected)

### 2.29.1 – Aug 5, 2026
## Features
* **[Unity]** Added `isExempt` to the Unity `ServiceConsent` model, propagating the statistical exception flag to the Unity bridge
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
def usercentrics_version = "2.29.1"
def usercentrics_version = "2.30.0"

group 'com.usercentrics.sdk.flutter'
version usercentrics_version
Expand Down
16 changes: 8 additions & 8 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,12 @@ PODS:
- nanopb/decode (3.30910.0)
- nanopb/encode (3.30910.0)
- PromisesObjC (2.4.1)
- Usercentrics (2.29.1)
- usercentrics_sdk (2.29.1):
- Usercentrics (2.30.0)
- usercentrics_sdk (2.30.0):
- Flutter
- UsercentricsUI (= 2.29.1)
- UsercentricsUI (2.29.1):
- Usercentrics (= 2.29.1)
- UsercentricsUI (= 2.30.0)
- UsercentricsUI (2.30.0):
- Usercentrics (= 2.30.0)
- webview_flutter_wkwebview (0.0.1):
- Flutter
- FlutterMacOS
Expand Down Expand Up @@ -137,9 +137,9 @@ SPEC CHECKSUMS:
GoogleUtilities: 766ace00c6b10d8148408f329d10c4f051931850
nanopb: fad817b59e0457d11a5dfbde799381cd727c1275
PromisesObjC: 752c3227f599e3467650e47ea36f433eeb10c273
Usercentrics: 1234eaa46bfb50c4645226ed0c617ef34967e890
usercentrics_sdk: b6337d15e183f539b92d877add04eabe1f7c8957
UsercentricsUI: f304cc98ade660138a90089b7289cb2e09e58d44
Usercentrics: 567d5a7fae74bf873d295135c2acce2569997c3d
usercentrics_sdk: c4aaf8eada36cb76c9b08d8b49010a254263fc46
UsercentricsUI: 2d82365e63124398120d2af121fc6d2e1835aaeb
webview_flutter_wkwebview: 1821ceac936eba6f7984d89a9f3bcb4dea99ebb2

PODFILE CHECKSUM: e97bfdbafeca8809c8aa9477153c465633bd1c02
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ packages:
path: ".."
relative: true
source: path
version: "2.29.1"
version: "2.30.0"
vector_math:
dependency: transitive
description:
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion example_spm/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ packages:
path: ".."
relative: true
source: path
version: "2.29.1"
version: "2.30.0"
vector_math:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion ios/usercentrics_sdk.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'usercentrics_sdk'
s.version = '2.29.1'
s.version = '2.30.0'
s.summary = 'Usercentrics Flutter SDK.'
s.description = <<-DESC
Usercentrics Flutter SDK.
Expand Down
4 changes: 2 additions & 2 deletions ios/usercentrics_sdk/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ let package = Package(
.library(name: "usercentrics-sdk", targets: ["usercentrics_sdk"])
],
dependencies: [
.package(url: "https://bitbucket.org/usercentricscode/usercentrics-spm-ui", exact: "2.29.1"),
.package(url: "https://bitbucket.org/usercentricscode/usercentrics-spm-sdk", exact: "2.29.1")
.package(url: "https://bitbucket.org/usercentricscode/usercentrics-spm-ui", exact: "2.30.0"),
.package(url: "https://bitbucket.org/usercentricscode/usercentrics-spm-sdk", exact: "2.30.0")
],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repository: https://github.com/Usercentrics/flutter-sdk/
# [X] android/build.gradle
# [X] ios/usercentrics_sdk.podspec + pod install/update
# [X] CHANGELOG.md
version: 2.29.1
version: 2.30.0

environment:
sdk: ">=2.17.1 <4.0.0"
Expand Down
Loading