Skip to content
Closed
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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
[Release Notes](https://docs.usercentrics.com/cmp_in_app_sdk/latest/about/history/)
### 2.26.2 – Apr 15, 2026
## Improvements
* Improved SDK initialization logging
## Fixes
* **[Android]** Fixed consent banner ignoring "Popup" mode dashboard configuration and always showing fullscreen
* **[Android]** Fixed `shouldCollectConsent` always returning `true` after app relaunch on TCF configs
* **[Android]** Fixed window leak when activity finishes while consent banner is still showing
* **[Android]** Fixed ATP list updates that could lead to infinite banner resurfaces
* **[iOS]** Fixed SVG banner logo failing to load due to SVGKit parsing error
* **[iOS]** Fixed missing padding and misalignment between toggle and label in second layer
* **[iOS]** Fixed toggle dropdown arrow alignment
* **[iOS]** Fixed Swift Package Manager unable to resolve `usercentrics-spm-ui` package
* **[TCF]** Fixed Stack appearing duplicated under Special Purposes section with broken consent persistence
* Fixed "More" button custom colors not being applied in the first layer
* Fixed mediation consent logs not appearing when applying consent

### 2.26.1 – Apr 07, 2026
## Features
* Added support for US National (GPP) privacy framework
Expand Down
2 changes: 1 addition & 1 deletion android/build-legacy.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
def usercentrics_version = "2.26.1"
def usercentrics_version = "2.26.2"
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[VALIDATION] You updated def usercentrics_version = "2.26.2" (line 1). Run a Gradle sync / full CI build to confirm the dependency resolution for com.usercentrics.sdk:usercentrics-ui:2.26.2 succeeds and there are no transitive or repository problems. Also search the repo for other occurrences of the legacy variable to ensure no stale references remain.

version usercentrics_version

buildscript {
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
val usercentricsVersion = "2.26.1"
val usercentricsVersion = "2.26.2"
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[REFACTORING] You updated val usercentricsVersion = "2.26.2" (line 1). There are now two separate places holding the same SDK version (build-legacy.gradle and build.gradle.kts). Consider centralizing the SDK version (e.g., gradle.properties or rootProject ext property) to avoid future mismatches and accidental inconsistent bumps across build files.

// android/build.gradle.kts
// Consider reading this from a shared property instead of hardcoding
val usercentricsVersion = project.findProperty("USERCENTRICS_SDK_VERSION") as String? ?: "2.26.2"

// android/build-legacy.gradle
// def usercentrics_version = USERCENTRICS_SDK_VERSION ?: "2.26.2"
def usercentrics_version = project.hasProperty('USERCENTRICS_SDK_VERSION') ? project.property('USERCENTRICS_SDK_VERSION') : "2.26.2"

And in gradle.properties:

USERCENTRICS_SDK_VERSION=2.26.2

val reactNativeVersion = "+"

fun BooleanProperty(name: String): Boolean {
Expand Down
2 changes: 2 additions & 0 deletions ios/Extensions/UsercentricsCMPData+Dict.swift
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,8 @@ extension CustomizationColor {
"toggleDisabledBackground" : self.toggleDisabledBackground as Any,
"toggleDisabledIcon" : self.toggleDisabledIcon as Any,
"secondLayerTab" : self.secondLayerTab as Any,
"moreBtnBackground" : self.moreBtnBackground as Any,
"moreBtnText" : self.moreBtnText as Any,
]
}
}
Expand Down
Loading
Loading