Added: base expo installation

This commit is contained in:
2024-05-04 00:13:58 +02:00
parent 44dbf74f1c
commit 3a7b83b990
10 changed files with 14280 additions and 0 deletions

30
frontend/app.json Normal file
View File

@@ -0,0 +1,30 @@
{
"expo": {
"name": "deguapp",
"slug": "deguapp",
"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"
}
}
}