Home > Back-end >  Using vscode to develop a flutter app, but after stopping the debugging and opening the app on the p
Using vscode to develop a flutter app, but after stopping the debugging and opening the app on the p

Time:10-18

I am using Vscode for developing flutter apps. After running the app in debug mode on my phone and stopped the debugging, then opened the app on the phone, it loads the previous version instead of the current one.

CodePudding user response:

Open AVD Manager. Select the emulator that you are running the app.

WipeData and run again in same emulator.

CodePudding user response:

Hot reloads/restarts don't exist after ending the debugging session.

If you want to keep the updated app on the phone after debugging,

  1. Stop the debug session
  2. Run the app again
  • Related