Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
4b7628a
fix(brownfield/cli): Adjust iOS/Android library file discovery to rem…
kitten May 7, 2026
19ad2f9
perf(cli): Reduce `withMetroErrorReportingResolver`'s memory pressure…
kitten May 7, 2026
7d65b81
[docs] Add Expo Skills option to SDK upgrade guide (#45256)
amandeepmittal May 7, 2026
7d46c17
[docs] Add Vale rule for the Prerequisites component (#45308)
amandeepmittal May 7, 2026
34663f3
[docs] Update CodePush migration channel surfing verbiage (#45255)
amandeepmittal May 7, 2026
81ea445
[templates][iOS] Enable EXPO_USE_PRECOMPILED_MODULES by default (#45505)
gabrieldonadel May 7, 2026
e892633
[docs] Add command-line Vale rule and fix adjective usage (#45262)
amandeepmittal May 7, 2026
b3db98a
Upgrade react-native-screens to 4.25.0-beta.3 (#45482)
Ubax May 7, 2026
5154f23
fix(metro-config): Fall back to our Babel `getCacheKey` function for …
kitten May 7, 2026
89ddd0b
`expo-type-information` - reading types of Swift expo modules, genera…
HubertBer May 7, 2026
a5c834d
[bare-expo] Fix enabling prebuilds (#45510)
alanjhughes May 7, 2026
35d3251
[chore] lock files [skip ci]
alanjhughes May 7, 2026
d7b4e5e
Publish packages
alanjhughes May 7, 2026
1896a04
[core][Android] Speed up AS sync by generating stub PCH files (#45503)
lukmccall May 7, 2026
7e9d30b
[chore] lock files [skip ci]
alanjhughes May 7, 2026
918cbc0
[docs] Update prebuilt Expo modules docs for SDK 55/56 and iOS (#45474)
brentvatne May 7, 2026
66808a3
[updates] Add runtime version header to asset requests (#45465)
douglowder May 7, 2026
adb8e41
fix(cli): fix broken loading bar in CI (#45513)
EvanBacon May 7, 2026
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
100 changes: 96 additions & 4 deletions apps/bare-expo/ios/BareExpo.xcodeproj/project.pbxproj

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions apps/bare-expo/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ require 'json'
podfile_properties = JSON.parse(File.read(File.join(__dir__, 'Podfile.properties.json'))) rescue {}

ENV['EX_DEV_CLIENT_NETWORK_INSPECTOR'] ||= podfile_properties['EX_DEV_CLIENT_NETWORK_INSPECTOR']
ENV['RCT_USE_RN_DEP'] ||= '0' if podfile_properties['ios.buildReactNativeFromSource'] == 'true'
ENV['RCT_USE_RN_DEP'] ||= podfile_properties['ios.buildReactNativeFromSource'] == 'true' ? '0' : '1'
ENV['RCT_HERMES_V1_ENABLED'] ||= '1' if podfile_properties['expo.useHermesV1'] == 'true'
ENV['RCT_USE_PREBUILT_RNCORE'] ||= '0' if podfile_properties['ios.buildReactNativeFromSource'] == 'true'
ENV['EXPO_USE_PRECOMPILED_MODULES'] ||= '1' if podfile_properties['EXPO_USE_PRECOMPILED_MODULES'] == 'true'
ENV['RCT_USE_PREBUILT_RNCORE'] ||= podfile_properties['ios.buildReactNativeFromSource'] == 'true' ? '0' : '1'
ENV['EXPO_USE_PRECOMPILED_MODULES'] ||= '1' if podfile_properties['EXPO_USE_PRECOMPILED_MODULES'] != 'false'

platform :ios, podfile_properties['ios.deploymentTarget'] || '16.4'

Expand Down
Loading
Loading