feat: upgrade RN App to 0.87.0 - #447
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Upgrades the RNApp workspace application to React Native 0.87.0, updating the associated JavaScript and Android build toolchain dependencies/configuration to match the new RN baseline.
Changes:
- Bumped
react-nativeto0.87.0and aligned related RN ecosystem packages (CLI, presets, Metro config, safe-area-context, screens) inpackage.jsonandyarn.lock. - Updated Android build tooling (Gradle wrapper, compile/build tools SDK levels, Kotlin version) to support the RN upgrade.
- Tweaked Android runtime/build settings (edge-to-edge enabled, Proguard default file switched to
proguard-android-optimize.txt).
Reviewed changes
Copilot reviewed 7 out of 8 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| yarn.lock | Updates lockfile to resolve RN 0.87.0 and related dependency graph changes. |
| apps/RNApp/package.json | Bumps RN and related JS dependencies for RNApp. |
| apps/RNApp/android/gradle/wrapper/gradle-wrapper.properties | Updates Gradle wrapper version. |
| apps/RNApp/android/gradle.properties | Enables edge-to-edge and adds AGP-related opt-out properties. |
| apps/RNApp/android/build.gradle | Updates Android SDK/build tools and Kotlin version used by the project. |
| apps/RNApp/android/BrownfieldLib/build.gradle.kts | Aligns library module compile SDK and updates pinned RN Android artifacts. |
| apps/RNApp/android/app/build.gradle | Switches default Proguard file to the optimize variant. |
| apps/AndroidApp/app/build.gradle.kts | Updates compile SDK target for the example Android app module. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
hurali97
force-pushed
the
hur/rn-app-0.87
branch
from
August 20, 2026 09:21
73785c9 to
255a61f
Compare
hurali97
pushed a commit
that referenced
this pull request
Sep 16, 2026
The RN 0.87 upgrade (0f1b85d, #447) never regenerated apps/RNApp/ios/ Podfile.lock — that commit touched no files under apps/RNApp/ios at all. The lockfile still pinned ReactNativeDependencies and 125 other pods at 0.85.0 while package.json is on react-native 0.87.0, so pod install failed to resolve: [!] CocoaPods could not find compatible versions for pod "ReactNativeDependencies" The pods cache hid it for three weeks: the cache key is hashFiles(Podfile.lock), and since the stale lock never changed, the key never changed either. A warm cache kept pod install happy until the cache aged out, and the first cold run — 11 Sep, run 34582797299 — broke. Only the AppleApp Vanilla job is affected, because this is the repo's only tracked Podfile.lock and the Expo variants install pods elsewhere. Regenerated with CocoaPods 1.15.2 (matching apps/RNApp/Gemfile.lock) on Ruby 3.2. PODFILE CHECKSUM is unchanged, so the Podfile itself did not change — only the resolution. Co-authored-by: Radoslaw Nowacki <radoslaw.nowacki@callastack.com> Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
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 updates the
RNAppto react-native v0.87.0. This is required for #448Test plan