Can someone explain me what’s the difference if I put –release or if I don’t? Which mode does it choose if don’t write the –release argument?
Thanks in advance
Can someone explain me what’s the difference if I put –release or if I don’t? Which mode does it choose if don’t write the –release argument?
Thanks in advance
2
Answers
I think this question has the answer you need, it runs but without debug features.
Flutter debug vs release builds
In debug mode, the app is set up for debugging on the physical device, emulator, or simulator.
Debug mode for mobile apps mean that:
for execution speed, binary size, or deployment).
(such as DevTools) can connect to the process.
Debug mode for a web app means that:
Use release mode for deploying the app, when you want maximum optimization and minimal footprint size. For mobile, release mode (which is not supported on the simulator or emulator), means that:
package sizes.
Release mode for a web app means that:
performance.
more infor Flutter’s build modes