To test the feasibility of the application, an apk version of the app was built using dummy data to simulate and test app usage. For this, eas build was used and some modifications to the files like app.json, eas.json and package.json was done.
Issue:
Before the eas build and during development phase, to quickly build and test the app in native environment, expo go was used. Simple npx expo start would start the build and using the expo go app, the app would start on the device after bundling.
Now, after the eas build was done, running npx expo start would start a development build instead of a expo go build. To start a development build another development build app is required and process got complicated.
In the options after npx expo start, there is another option to start as "expo go" build. When used, an expo go build was built and using the app, we have to scan the QR. Previously, clicking on link displayed in app would start the process.
But after scanning the app, it would take to another local server site to select the build type to access, as development or expo go.
This has made the process more complicated and adds too many unnecessary steps. Had to scan the QR and choose the build again.
Context:
Issue:
expo go
was used. Simplenpx expo start
would start the build and using the expo go app, the app would start on the device after bundling.npx expo start
would start a development build instead of aexpo go
build. To start a development build another development build app is required and process got complicated.