ci: remove legacy AppEntry.js shim and add native package caches (SDK-749) - #187
Merged
brax10ward merged 1 commit intoAug 25, 2026
Conversation
…-749) The `Fix package.json main entry` step overrode `main` to `node_modules/expo/AppEntry.js`, which `@expo/config` in Expo SDK 57 no longer resolves. Gradle's `entryFile = file(... resolveAppEntry ...)` then got an empty string and blew up with `Cannot convert '' to File.` Drop the shim (checked-in `main: "index.ts"` is the SDK 49+ default and works with EAS local build) and the now-redundant `Verify EAS CLI installation` step. Add `~/.gradle/caches` + `~/.gradle/wrapper` for Android and `~/Library/Caches/CocoaPods` + `~/.cocoapods/repos` for iOS so repeat runs skip the RN/Kotlin/AGP/Expo maven downloads and the CocoaPods CDN refresh.
eriksargent
approved these changes
Aug 25, 2026
brax10ward
deleted the
braxton/sdk-749-ci-remove-legacy-expoappentryjs-shim-breaking-androidios
branch
August 25, 2026 22:36
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.
Linear Link
https://linear.app/atomicbuilt/issue/SDK-749/ci-remove-legacy-expoappentryjs-shim-breaking-androidios-builds-on
Type of change
Checklist:
Notes
The
📋 Fix package.json main entrystep rewroteexample/package.json'smaintonode_modules/expo/AppEntry.js, which@expo/configin Expo SDK 57 no longer resolves. The childresolveAppEntryprocess threwENTRY_NOT_FOUND, its stdout was empty, and Gradle failed atexample/android/app/build.gradle:12withCannot convert '' to File.Every build onmastersince #183 has hit this (failing run).Also removed the no-op
🔄 Verify EAS CLI installationstep and added:~/.gradle/caches+~/.gradle/wrapperonbuild-android(skips RN / Kotlin / AGP / Expo maven downloads on repeat runs)~/Library/Caches/CocoaPods+~/.cocoapods/reposonbuild-ios(skips CocoaPods CDN spec-repo refresh)Expected wall-clock (warm cache): Android ~18m → ~10m, iOS ~10m → ~8m. First run after merge is a cache miss.