Update app configuration and scripts for improved build process

- Added package name to app.json for better identification.
- Updated start scripts in package.json to use 'expo run' commands for Android and iOS.
This commit is contained in:
Mekan1206
2025-09-20 11:24:49 +05:00
parent 9e0e285172
commit 68affb3d4b
2 changed files with 4 additions and 3 deletions

View File

@@ -21,7 +21,8 @@
"foregroundImage": "./assets/images/adaptive-icon.png", "foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff" "backgroundColor": "#ffffff"
}, },
"edgeToEdgeEnabled": true "edgeToEdgeEnabled": true,
"package": "com.nurmuhammet.ali.Umra"
}, },
"web": { "web": {
"bundler": "metro", "bundler": "metro",

View File

@@ -4,8 +4,8 @@
"version": "1.0.0", "version": "1.0.0",
"scripts": { "scripts": {
"start": "expo start", "start": "expo start",
"android": "expo start --android", "android": "expo run:android",
"ios": "expo start --ios", "ios": "expo run:ios",
"web": "expo start --web", "web": "expo start --web",
"test": "jest --watchAll" "test": "jest --watchAll"
}, },