Skip to content

Commit

Permalink
Fix expo configs
Browse files Browse the repository at this point in the history
  • Loading branch information
averyyip committed Dec 4, 2023
1 parent e174c99 commit 2b6e9ca
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 165 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,6 @@ dist
.vercel
.expo
.vscode
expo-env.d.ts
ios
android
6 changes: 3 additions & 3 deletions apps/expo/app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ const defineConfig = (): ExpoConfig => ({
scheme: 'expo',
version: '0.1.0',
orientation: 'portrait',
icon: './assets/icon.jpg',
icon: './assets/icon.png',
userInterfaceStyle: 'light',
splash: {
image: './assets/icon.jpg',
image: './assets/icon.png',
resizeMode: 'contain',
backgroundColor: '#171717',
},
Expand All @@ -25,7 +25,7 @@ const defineConfig = (): ExpoConfig => ({
android: {
package: 'com.vessel.pager',
adaptiveIcon: {
foregroundImage: './assets/icon.jpg',
foregroundImage: './assets/icon.png',
backgroundColor: '#1F104A',
},
},
Expand Down
Binary file removed apps/expo/assets/icon.jpg
Binary file not shown.
Binary file added apps/expo/assets/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions apps/expo/eas.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@
"EXPO_PUBLIC_WEBAPP_URL": "https://pager.staging.vessel.dev"
}
},
"development-simulator": {
"extends": "development",
"ios": {
"simulator": true
}
},
"preview": {
"extends": "base",
"distribution": "internal",
Expand Down
6 changes: 3 additions & 3 deletions apps/expo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@
"@trpc/server": "next",
"date-fns": "^2.30.0",
"expo": "^49.0.16",
"expo-auth-session": "^5.2.0",
"expo-auth-session": "^5.0.2",
"expo-constants": "~14.4.2",
"expo-dev-client": "~2.4.12",
"expo-device": "~5.4.0",
"expo-linking": "~5.0.2",
"expo-notifications": "~0.20.1",
"expo-router": "2.0.11",
"expo-secure-store": "^12.5.0",
"expo-secure-store": "^12.3.1",
"expo-splash-screen": "~0.20.5",
"expo-status-bar": "^1.6.0",
"expo-web-browser": "^12.5.0",
"expo-web-browser": "^12.3.2",
"nativewind": "^4.0.13",
"radash": "^11.0.0",
"react": "18.2.0",
Expand Down
181 changes: 22 additions & 159 deletions pnpm-lock.yaml

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

0 comments on commit 2b6e9ca

Please sign in to comment.