I'm using Android Studio for Flutter development, and after a recent update to Android Studio version 2024.3.2, I noticed a strange behavior when deploying the app to a physical device.
I run the app via Android Studio (flutter run or Run ▶️ button).
The app builds and launches correctly with updated changes (UI, logic, etc).
However, after I terminate the app and reopen it manually from the device's launcher:
Is this a known issue with the latest Android Studio or Flutter toolchain?
Is there any cache or build setting that prevents updated code from being deployed correctly to the physical device?
The app should remain updated with the latest changes, even when I open it later from the device without Android Studio.
========================================================================
If anyone needs more details (logs, project setup, or exact steps), feel free to ask — I’ll be happy to provide them.
Okay, I've found the answer @maulik nagvadiya I Uninstall the app manually from your device, but this did not work for me, so I'm using
flutter clean
and flutter pub get
Then run again, and it's worked fine, thanks all