Created a new Expo app

This commit is contained in:
2022-10-13 18:55:31 +02:00
commit 016ea42b93
11 changed files with 21484 additions and 0 deletions

33
app.json Normal file
View File

@@ -0,0 +1,33 @@
{
"expo": {
"name": "test_project_expo",
"slug": "test_project_expo",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"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"
}
}
}