Conversation
WalkthroughUpdates project/version references from 2.23.0 to 2.23.2 across Android Gradle scripts and package.json, and adds a CHANGELOG entry noting React Native 0.79.6 support for 16 KB page sizes. No API, control-flow, or functional logic changes. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Possibly related PRs
Suggested reviewers
Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches
🧪 Generate unit tests
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 0
🧹 Nitpick comments (1)
android/build.gradle.kts (1)
26-38: Remove duplicated compileOptions block.compileOptions appears twice with identical JavaVersion 17 settings; keep one to reduce noise.
- compileOptions { - sourceCompatibility = JavaVersion.VERSION_17 - targetCompatibility = JavaVersion.VERSION_17 - } - kotlinOptions { jvmTarget = "17" } - compileOptions { - sourceCompatibility = JavaVersion.VERSION_17 - targetCompatibility = JavaVersion.VERSION_17 - } + compileOptions { + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 + }
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (1)
package-lock.jsonis excluded by!**/package-lock.json
📒 Files selected for processing (4)
CHANGELOG.md(1 hunks)android/build-legacy.gradle(1 hunks)android/build.gradle.kts(1 hunks)package.json(1 hunks)
🔇 Additional comments (4)
android/build.gradle.kts (1)
6-6: Android dependency version bump looks good.package.json (1)
3-3: All version references are updated and the Podspec pulls the correct version; no leftover “2.23.0” occurrences found.android/build-legacy.gradle (1)
1-1: Legacy Gradle version and artifact availability verifiedcom.usercentrics.sdk:usercentrics-ui:2.23.2 is published on Maven Central.
CHANGELOG.md (1)
3-6: RN version and changelog entry verified
React Native is consistently updated to 0.79.6 across package.json, Gradle, TOML and lockfiles, and the changelog tag “2.23.2 – Oct 1 2025” is correct.
Summary by CodeRabbit