Skip to content

Commit

Permalink
upgrade expo sdk to v50 (#2362)
Browse files Browse the repository at this point in the history
* upgrade expo to v50

* bump up version for android build

* fix double quotes

* fix prettier in appconfig

* fix ts issue
  • Loading branch information
pvicensSpacedev authored Mar 14, 2024
1 parent 92983a6 commit d68a6bb
Show file tree
Hide file tree
Showing 5 changed files with 1,604 additions and 1,137 deletions.
7 changes: 6 additions & 1 deletion apps/mobile/app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,5 +107,10 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
},
],
},
plugins: [['sentry-expo', { setCommits: true }], 'expo-barcode-scanner'],
plugins: [
['sentry-expo', { setCommits: true }],
'expo-barcode-scanner',
'expo-font',
'expo-secure-store',
],
});
68 changes: 34 additions & 34 deletions apps/mobile/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,67 +9,67 @@
"@gorhom/portal": "^1.0.14",
"@magic-sdk/react-native-expo": "^16.0.0",
"@privy-io/expo": "^0.6.0",
"@react-native-async-storage/async-storage": "1.18.2",
"@react-native-async-storage/async-storage": "1.21.0",
"@react-native-clipboard/clipboard": "^1.12.1",
"@react-native-masked-view/masked-view": "0.2.9",
"@react-native-masked-view/masked-view": "0.3.0",
"@react-navigation/material-top-tabs": "^6.6.0",
"@react-navigation/native": "^6.1.4",
"@react-navigation/native-stack": "^6.9.10",
"@sentry/react-native": "5.10.0",
"@shopify/flash-list": "1.4.3",
"@sentry/react-native": "5.19.1",
"@shopify/flash-list": "1.6.3",
"@walletconnect/modal-react-native": "^1.0.0-rc.10",
"clsx": "^1.2.1",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"ethers": "5.7.2",
"expo": "~49.0.21",
"expo-application": "~5.3.0",
"expo-asset": "^8.9.1",
"expo-av": "~13.4.1",
"expo-barcode-scanner": "~12.5.3",
"expo-blur": "~12.4.1",
"expo-constants": "~14.4.2",
"expo-dev-client": "~2.4.12",
"expo-device": "~5.4.0",
"expo-file-system": "~15.4.5",
"expo-font": "~11.4.0",
"expo-linking": "~5.0.2",
"expo-notifications": "~0.20.1",
"expo-secure-store": "~12.3.1",
"expo-splash-screen": "~0.20.5",
"expo-status-bar": "~1.6.0",
"expo-system-ui": "~2.4.0",
"expo-updates": "~0.18.19",
"expo-web-browser": "~12.3.2",
"expo": "^50.0.0",
"expo-application": "~5.8.3",
"expo-asset": "~9.0.2",
"expo-av": "~13.10.5",
"expo-barcode-scanner": "~12.9.3",
"expo-blur": "~12.9.2",
"expo-constants": "~15.4.5",
"expo-dev-client": "~3.3.9",
"expo-device": "~5.9.3",
"expo-file-system": "~16.0.8",
"expo-font": "~11.10.3",
"expo-linking": "~6.2.2",
"expo-notifications": "~0.27.6",
"expo-secure-store": "~12.8.1",
"expo-splash-screen": "~0.26.4",
"expo-status-bar": "~1.11.1",
"expo-system-ui": "~2.9.3",
"expo-updates": "~0.24.11",
"expo-web-browser": "~12.8.2",
"lodash.merge": "^4.6.2",
"lru-cache": "^9.1.1",
"mixpanel-react-native": "^2.2.5",
"mixpanel-react-native": "^3.0.0-beta.2",
"nativewind": "^2.0.11",
"node-html-parser": "^6.1.5",
"react": "18.2.0",
"react-native": "0.72.6",
"react-native": "0.73.4",
"react-native-collapsible-tab-view": "^6.1.4",
"react-native-fast-image": "^8.6.3",
"react-native-fetch-api": "^3.0.0",
"react-native-gesture-handler": "~2.12.0",
"react-native-get-random-values": "^1.10.0",
"react-native-gesture-handler": "~2.14.0",
"react-native-get-random-values": "~1.8.0",
"react-native-haptic-feedback": "^2.0.3",
"react-native-ios-context-menu": "^1.15.3",
"react-native-linear-gradient": "^2.6.2",
"react-native-markdown-display": "https://github.com/jonasmerlin/react-native-markdown-display.git",
"react-native-modal": "^13.0.1",
"react-native-pager-view": "^6.2.0",
"react-native-pager-view": "6.2.3",
"react-native-polyfill-globals": "^3.1.0",
"react-native-qrcode-svg": "^6.2.0",
"react-native-reanimated": "~3.3.0",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "~3.22.0",
"react-native-reanimated": "~3.6.2",
"react-native-safe-area-context": "4.8.2",
"react-native-screens": "~3.29.0",
"react-native-skeleton-placeholder": "^5.2.4",
"react-native-svg": "13.9.0",
"react-native-svg": "14.1.0",
"react-native-tab-view": "^3.4.0",
"react-native-url-polyfill": "^1.3.0",
"react-native-webview": "13.2.2",
"sentry-expo": "~7.1.1",
"react-native-webview": "13.6.4",
"sentry-expo": "~7.2.0",
"swr": "^2.1.1",
"text-encoding": "^0.7.0",
"typescript": "^5.1.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function GalleryBottomSheetModal(
backgroundComponent={GalleryBottomSheetBackground}
backdropComponent={backdropComponent || GalleryBottomSheetBackdrop}
handleComponent={GalleryBottomSheetHandle}
snapPoints={snapPoints}
snapPoints={snapPoints as (string | number)[] | SharedValue<(string | number)[]>}
{...rest}
>
{/* Pass the parent's navigation down to this bottom sheet so it has */}
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"relay-runtime": "14.1.0",
"entities": "3.0.1",
"typecript": "^5.0.0",
"@expo/prebuild-config": "6.2.4",
"@expo/config-plugins": "7.2.2",
"@expo/prebuild-config": "6.7.0",
"@expo/config-plugins": "7.8.0",
"@wagmi/core@0.7.9": "patch:@wagmi/core@npm%3A0.7.9#./.yarn/patches/@wagmi-core-npm-0.7.9-fde5e7dcba.patch",
"nativewind@^2.0.11": "patch:nativewind@npm%3A2.0.11#./.yarn/patches/nativewind-npm-2.0.11-dc2ccf9fb5.patch",
"react-native-fast-image@^8.6.3": "patch:react-native-fast-image@npm%3A8.6.3#./.yarn/patches/react-native-fast-image-npm-8.6.3-03ee2d23c0.patch"
Expand Down
Loading

0 comments on commit d68a6bb

Please sign in to comment.