You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I haven't found any pattern when this happens but regularly I have the problems when trying to debug a backend issue that either the network view stops recording and event or that it only records some events and most often exactly the one I am interested in is missing so that I have to switch to an external proxy debugger like fiddler.
We use the new native HttpClients on iOS and Android, I don't know if that might have an effect.
The text was updated successfully, but these errors were encountered:
Can you please share the version of DevTools you are using?
You can check it by running:
flutter --version
Also just suggesting a temporary workaround (Using FVM or you may use any similar tool), so that you may not have to switch to other tools for this.
While this might not be the ideal solution, you can try the following workaround to unblock yourself until a proper fix is available:
With FVM, you can use a different Flutter version without changing the version for your project.
Install FVM
Follow the installation steps here: Install FVM
Install an older Flutter version (try the version that works best for you)
fvm install 3.27.3
Launch DevTools using FVM
You can run either of the following:
fvm dart devtools
Use DevTools for Debugging
Once DevTools launches in the browser, paste the DevTools URL (printed in your logs) into it to begin debugging.
Note:
Once the issue is resolved, you can use Devtools with usual way and switch back to the updated Flutter version to stay on the latest stable release.
I haven't found any pattern when this happens but regularly I have the problems when trying to debug a backend issue that either the network view stops recording and event or that it only records some events and most often exactly the one I am interested in is missing so that I have to switch to an external proxy debugger like fiddler.
We use the new native HttpClients on iOS and Android, I don't know if that might have an effect.
The text was updated successfully, but these errors were encountered: