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

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