Open
Conversation
Sample app builds 📱Below you will find the list of the latest versions of the sample apps. It's recommended to always download the latest builds of the sample apps to accurately test the pull request. |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #653 +/- ##
============================================
+ Coverage 63.15% 68.49% +5.33%
- Complexity 514 760 +246
============================================
Files 118 142 +24
Lines 3602 4307 +705
Branches 445 582 +137
============================================
+ Hits 2275 2950 +675
+ Misses 1186 1134 -52
- Partials 141 223 +82 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
|
Build available to test |
|
📏 SDK Binary Size Comparison Report
|
5edd60f to
15da7db
Compare
|
|
mrehan27
approved these changes
Feb 13, 2026
Shahroz16
approved these changes
Feb 15, 2026
Contributor
Shahroz16
left a comment
There was a problem hiding this comment.
Looks good, just double checking, have we verified it on
- Firebase version with progurarding
- In app which uses headers and other features of retofit for caching etc
This it was bumped only for SSE, so probably they would be fine?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This is causing errors for customers due to:
Duplicate meta data coming from OkHttp
Some RN code is using OkHttp 4 code and is failing when Gradle resolves dependency to v5
OkHttp downgrade (5 → 4): Bumped OkHttp from
5.2.1to4.12.0inbuildSrc/.../Versions.kt. SSE usage is compatible with OkHttp 4; no code changes required.Packaging / META-INF exclusions removed:
META-INF/versions/9/OSGI-INF/MANIFEST.MFfrommessaginginapp,samples/java_layout, andsamples/kotlin_compose.META-INF/OSGI-INF/MANIFEST.MFand, in the Compose sample,META-INF/{AL2.0,LGPL2.1}) by deleting thepackaging { resources { excludes ... } }blocks in:messaginginapp/build.gradlesamples/java_layout/build.gradlesamples/kotlin_compose/build.gradle.ktsSample apps and the SDK should be verified to build and run; if duplicate-file errors appear (e.g. for license files), re-add only the needed excludes in the affected module(s).
Note
Medium Risk
Dependency downgrade and packaging changes can affect runtime networking behavior and may reintroduce duplicate-resource build failures in specific module/consumer combinations.
Overview
Downgrades the SDK’s OkHttp dependency from
5.2.1to4.12.0viaVersions.OKHTTP.Removes
packaging { resources { excludes ... } }blocks frommessaginginappand the sample apps, dropping the META-INF exclusion rules that were added to work around OkHttp 5/OSGi and license resource conflicts.Written by Cursor Bugbot for commit 15da7db. This will update automatically on new commits. Configure here.