Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: use expo router #265

Merged
merged 7 commits into from
Jan 25, 2024
Merged
Show file tree
Hide file tree
Changes from 5 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
4 changes: 3 additions & 1 deletion app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
supportsTablet: true,
bundleIdentifier: Env.BUNDLE_ID,
},

experiments: {
typedRoutes: true,
},
android: {
adaptiveIcon: {
foregroundImage: './assets/adaptive-icon.png',
Expand Down
8 changes: 7 additions & 1 deletion ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ PODS:
- React-Core
- ExpoFileSystem (16.0.4):
- ExpoModulesCore
- ExpoHead (3.4.5):
- ExpoModulesCore
- ExpoImage (1.10.4):
- ExpoModulesCore
- SDWebImage (~> 5.17.0)
Expand Down Expand Up @@ -1233,6 +1235,7 @@ DEPENDENCIES:
- expo-dev-menu (from `../node_modules/expo-dev-menu`)
- expo-dev-menu-interface (from `../node_modules/expo-dev-menu-interface/ios`)
- ExpoFileSystem (from `../node_modules/expo-file-system/ios`)
- ExpoHead (from `../node_modules/expo-router/ios`)
- ExpoImage (from `../node_modules/expo-image/ios`)
- ExpoKeepAwake (from `../node_modules/expo-keep-awake/ios`)
- ExpoLocalization (from `../node_modules/expo-localization/ios`)
Expand Down Expand Up @@ -1340,6 +1343,8 @@ EXTERNAL SOURCES:
:path: "../node_modules/expo-dev-menu-interface/ios"
ExpoFileSystem:
:path: "../node_modules/expo-file-system/ios"
ExpoHead:
:path: "../node_modules/expo-router/ios"
ExpoImage:
:path: "../node_modules/expo-image/ios"
ExpoKeepAwake:
Expand Down Expand Up @@ -1479,6 +1484,7 @@ SPEC CHECKSUMS:
expo-dev-menu: 2c26766f836f9ff51b889a245dcbabb604c1c5ea
expo-dev-menu-interface: 7ba029c9d1a82ac22b9b584c00514860b060553e
ExpoFileSystem: 39e454b8e7f2358ae2c8f8ec255fede4c3039493
ExpoHead: dda4dd22972750dd2baa5c0231b86dc6e10ddfd9
ExpoImage: d8d1003394f96a42d7702ab07d33e7d3773bcaa3
ExpoKeepAwake: 0f5cad99603a3268e50af9a6eb8b76d0d9ac956c
ExpoLocalization: f5f5d71dc0c9514d3d77b2771144f6fed6398d04
Expand Down Expand Up @@ -1557,4 +1563,4 @@ SPEC CHECKSUMS:

PODFILE CHECKSUM: ac55d8c0b92af1b0a5da5f8cb8448313ecc7948e

COCOAPODS: 1.11.3
COCOAPODS: 1.12.1
11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "obytesapp",
"version": "4.3.2",
"private": true,
"main": "expo-router/entry",
"scripts": {
"start": "cross-env EXPO_NO_DOTENV=1 expo start",
"prebuild": "cross-env EXPO_NO_DOTENV=1 pnpm expo prebuild",
Expand Down Expand Up @@ -47,14 +48,16 @@
"@tanstack/react-query": "^4.36.1",
"app-icon-badge": "^0.0.15",
"axios": "^1.6.5",
"expo": "~50.0.2",
"expo": "~50.0.3",
"expo-build-properties": "~0.11.0",
"expo-constants": "~15.4.5",
"expo-dev-client": "~3.3.6",
"expo-dev-client": "~3.3.7",
"expo-font": "~11.10.2",
"expo-image": "~1.10.4",
"expo-image": "~1.10.5",
"expo-linking": "~6.2.2",
"expo-localization": "~14.8.3",
"expo-splash-screen": "0.26.3",
"expo-router": "~3.4.5",
"expo-splash-screen": "0.26.4",
"expo-status-bar": "~1.11.1",
"expo-system-ui": "~2.9.3",
"i18next": "^22.5.1",
Expand Down
Loading
Loading