Created a new Expo app

This commit is contained in:
2025-10-23 13:24:21 +02:00
commit c10b5ae013
11 changed files with 9277 additions and 0 deletions

30
app.json Normal file
View File

@@ -0,0 +1,30 @@
{
"expo": {
"name": "WalletTracker",
"slug": "WalletTracker",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"newArchEnabled": true,
"splash": {
"image": "./assets/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"ios": {
"supportsTablet": true
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"edgeToEdgeEnabled": true,
"predictiveBackGestureEnabled": false
},
"web": {
"favicon": "./assets/favicon.png"
}
}
}