Created a new Expo app

This commit is contained in:
2021-10-24 15:49:48 +02:00
commit 4568076445
11 changed files with 5585 additions and 0 deletions

32
app.json Normal file
View File

@@ -0,0 +1,32 @@
{
"expo": {
"name": "ohome-app",
"slug": "ohome-app",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#FFFFFF"
}
},
"web": {
"favicon": "./assets/favicon.png"
}
}
}