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
e3fef3b
[docs] Remove mailchimp sign up from footer (#42602)
wschurman Jan 27, 2026
2cb46a7
[ios][maps] Adds user interface style option for Apple Maps (#42199)
huextrat Jan 27, 2026
c1ed3fc
[docs] Fix typos (#42596)
amandeepmittal Jan 27, 2026
cff9eeb
[docs] Remove `isNew` from `react-native-keyboard-controller` referen…
amandeepmittal Jan 27, 2026
81fcbd8
[docs] Upgrade styleguide packages (#42559)
amandeepmittal Jan 27, 2026
e9ad68d
[docs] Improve EAS Metadata introduction (#42169)
amandeepmittal Jan 27, 2026
020b3ef
[docs] Improve EAS Submit introduction (#42102)
amandeepmittal Jan 27, 2026
c0f5c25
[docs] Improve EAS Hosting introduction (#42175)
amandeepmittal Jan 27, 2026
7fd2cce
[expo-go] Add dev menu config options api (#42588)
alanjhughes Jan 27, 2026
9182562
[expo-go] Configure onboarding app name (#42589)
alanjhughes Jan 27, 2026
6f067ca
[expo-go] Remove "Downloading" references (#42590)
alanjhughes Jan 27, 2026
cb666b5
[expo-go] Enable editing source in explorer (#42591)
alanjhughes Jan 27, 2026
4c169f4
[ios][dev-menu] Move connection info lower in the menu (#42568)
alanjhughes Jan 27, 2026
a031bfc
[android][dev-menu] Move connection info lower in the menu (#42569)
alanjhughes Jan 27, 2026
95a6a1f
[expo-go] Bump iOS version [skip ci]
brentvatne Jan 27, 2026
220594d
Publish packages
brentvatne Jan 27, 2026
3410853
[expotools] Ignore e2e directory packages [skip ci]
brentvatne Jan 27, 2026
68fbfd1
[dev-menu][quest] Fix Floating action button not responding to presse…
behenate Jan 27, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
320 changes: 160 additions & 160 deletions apps/bare-expo/ios/Podfile.lock

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions apps/bare-expo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,17 +53,17 @@
"@react-native-segmented-control/segmented-control": "2.5.7",
"@shopify/flash-list": "2.0.2",
"@shopify/react-native-skia": "2.4.14",
"expo": "~55.0.0-preview.6",
"expo-brownfield": "~55.0.3",
"expo-build-properties": "~55.0.3",
"expo-camera": "~55.0.2",
"expo-dev-client": "~55.0.2",
"expo-image": "~55.0.2",
"expo-insights": "~55.0.3",
"expo-network-addons": "~55.0.2",
"expo-notifications": "~55.0.3",
"expo-router": "~55.0.0-beta.3",
"expo-splash-screen": "~55.0.2",
"expo": "~55.0.0-preview.7",
"expo-brownfield": "~55.0.4",
"expo-build-properties": "~55.0.4",
"expo-camera": "~55.0.3",
"expo-dev-client": "~55.0.3",
"expo-image": "~55.0.3",
"expo-insights": "~55.0.4",
"expo-network-addons": "~55.0.3",
"expo-notifications": "~55.0.4",
"expo-router": "~55.0.0-beta.4",
"expo-splash-screen": "~55.0.3",
"lottie-react-native": "^7.3.4",
"native-component-list": "*",
"react": "19.2.0",
Expand Down
24 changes: 24 additions & 0 deletions apps/expo-go/ios/Client/EXRootViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,21 @@ - (void)_completeTransitionToViewController:(UIViewController *)viewController
if (isShowingApp && appRecord.appManager.reactHost) {
[[DevMenuManager shared] updateCurrentBridge:[RCTBridge currentBridge]];
[[DevMenuManager shared] updateCurrentManifest:appRecord.appLoader.manifest manifestURL:appRecord.appLoader.manifestUrl];

DevMenuConfiguration *config = [DevMenuManager shared].configuration;

BOOL isDev = appRecord.appLoader.manifest.isDevelopmentMode || appRecord.appLoader.manifest.isUsingDeveloperTool;
BOOL isSnack = [self _isSnackURL:appRecord.appLoader.manifestUrl];

if (!isDev) {
config.showDebuggingTip = NO;
config.showFastRefresh = NO;
config.showHostUrl = isSnack;
} else {
config.showDebuggingTip = YES;
config.showFastRefresh = YES;
config.showHostUrl = NO;
}
}
}

Expand Down Expand Up @@ -413,6 +428,15 @@ - (void)_applySupportedInterfaceOrientations
}
}

- (BOOL)_isSnackURL:(nullable NSURL *)url
{
if (!url) {
return NO;
}
NSString *query = [url query];
return query && ([query containsString:@"snack"] || [query containsString:@"snack-channel"]);
}

@end

NS_ASSUME_NONNULL_END
1 change: 1 addition & 0 deletions apps/expo-go/ios/Exponent/Kernel/Core/EXKernel.m
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ - (instancetype)init
_serviceRegistry = [[EXKernelServiceRegistry alloc] init];

[DevMenuManager.shared setDelegate:self];
[DevMenuManager shared].configuration.onboardingAppName = @"Expo Go";

// Register keyboard commands (e.g., Cmd+D) for simulator
[[EXKernelDevKeyCommands sharedInstance] registerDevCommands];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,11 @@ - (void)updateStatusWithProgress:(EXLoadingProgress *)progress
dispatch_async(dispatch_get_main_queue(), ^{
EX_ENSURE_STRONGIFY(self);
float progressPercent = ([progress.done floatValue] / [progress.total floatValue]);
self.textLabel.text = [NSString stringWithFormat:@"%@ %.2f%%", progress.status, progressPercent * 100];
NSString *status = progress.status;
if ([status caseInsensitiveCompare:@"Downloading"] == NSOrderedSame) {
status = @"Loading";
}
self.textLabel.text = [NSString stringWithFormat:@"%@ %.2f%%", status, progressPercent * 100];
[self.textLabel setNeedsDisplay];

// TODO: (@bbarthec) maybe it's better to show/hide this based on other thing than progress status reported by the fetcher?
Expand Down Expand Up @@ -130,9 +134,9 @@ - (void)updateStatus:(EXAppLoaderRemoteUpdateStatus)status
+ (nullable NSString *)_loadingViewTextForStatus:(EXAppLoaderRemoteUpdateStatus)status
{
if (status == kEXAppLoaderRemoteUpdateStatusChecking) {
return @"Checking for new update...";
return @"Checking for latest version...";
} else if (status == kEXAppLoaderRemoteUpdateStatusDownloading) {
return @"New update available, downloading...";
return @"Loading latest version...";
} else {
return nil;
}
Expand Down
4 changes: 2 additions & 2 deletions apps/expo-go/ios/Exponent/Supporting/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>55.0.6</string>
<string>55.0.7</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
Expand Down Expand Up @@ -61,7 +61,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>55.0.6</string>
<string>55.0.7</string>
<key>FacebookAdvertiserIDCollectionEnabled</key>
<false/>
<key>FacebookAppID</key>
Expand Down
Loading
Loading