Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/sample-application-expo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ jobs:
- name: Build Android App
working-directory: samples/expo/android
env:
# Increase memory for Expo SDK 55 lint tasks
# Increase memory for Expo SDK 57 lint tasks
GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -XX:MaxMetaspaceSize=1g"
run: |
[[ "${{ matrix.build-type }}" == "production" ]] && CONFIG='Release' || CONFIG='Debug'
Expand Down
3 changes: 2 additions & 1 deletion samples/expo/components/ExternalLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ export function ExternalLink(props: Omit<React.ComponentProps<typeof Link>, 'hre
<Link
target="_blank"
{...props}
href={props.href}
// expo-router 57 tightened `href` to typed routes; this wrapper is for arbitrary external URLs.
href={props.href as React.ComponentProps<typeof Link>['href']}
onPress={e => {
if (Platform.OS !== 'web') {
// Prevent the default behavior of linking to the default browser on native.
Expand Down
22 changes: 11 additions & 11 deletions samples/expo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,20 @@
"@sentry/core": "10.62.0",
"@sentry/react-native": "8.16.0",
"@types/react": "~19.2.10",
"expo": "^56.0.0",
"expo-constants": "~56.0.15",
"expo-dev-client": "~56.0.15",
"expo-image-picker": "~56.0.13",
"expo-linking": "~56.0.11",
"expo-router": "~56.2.6",
"expo-status-bar": "~56.0.4",
"expo-updates": "~56.0.16",
"expo-web-browser": "~56.0.5",
"expo": "^57.0.0",
"expo-constants": "~57.0.2",
"expo-dev-client": "~57.0.3",
"expo-image-picker": "~57.0.1",
"expo-linking": "~57.0.1",
"expo-router": "~57.0.2",
"expo-status-bar": "~57.0.0",
"expo-updates": "~57.0.4",
"expo-web-browser": "~57.0.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-native": "0.86.0",
"react-native-gesture-handler": "~2.31.2",
"react-native-safe-area-context": "~5.8.0",
"react-native-gesture-handler": "~2.32.0",
"react-native-safe-area-context": "~5.7.0",
"react-native-screens": "~4.25.2",
"react-native-web": "^0.21.0",
"typescript": "~6.0.3"
Expand Down
Loading
Loading