receipt_indexer/code/app/demoTutorialProject/app.json
Ethan Wellenreiter 496386d7ff Initial setup for expo demo/tutorial project
Following https://www.youtube.com/watch?v=0-S5a0eXPoc (kind of).
Setting it up was different. I had to use "npx create-expo-app --template"
to make the project initially. Maybe follow this too for help:
https://docs.expo.dev/get-started/create-a-project/.

Signed-off-by: Ethan Wellenreiter <ewellenreiter@gmail.com>
2023-09-14 21:06:03 -04:00

31 lines
647 B
JSON

{
"expo": {
"name": "demoTutorialProject",
"slug": "demoTutorialProject",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
}
},
"web": {
"favicon": "./assets/favicon.png"
}
}
}