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>
31 lines
647 B
JSON
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"
|
|
}
|
|
}
|
|
}
|