feat: scaffold luggage list expo app with core local MVP
Some checks failed
Build App / release (push) Has been cancelled
Build App / build-web (push) Has been cancelled
Build App / build-android (push) Has been cancelled

This commit is contained in:
2026-04-18 11:51:58 +02:00
parent 3900755ad1
commit 7de77d2878
27 changed files with 11393 additions and 0 deletions

34
app.json Normal file
View File

@@ -0,0 +1,34 @@
{
"expo": {
"name": "Luggage List",
"slug": "luggage-list",
"version": "1.0.0",
"orientation": "default",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#f5f5f7"
},
"ios": {
"bundleIdentifier": "dev.reversed.luggagelist",
"supportsTablet": true,
"requireFullScreen": false
},
"android": {
"package": "dev.reversed.luggagelist",
"adaptiveIcon": {
"foregroundImage": "./assets/icon.png",
"backgroundColor": "#f5f5f7"
}
},
"web": {
"favicon": "./assets/icon.png",
"name": "Luggage List",
"themeColor": "#f5f5f7",
"backgroundColor": "#f5f5f7"
},
"owner": "spacebanane"
}
}