more docs on the modes are here: https://github.com/flutter/flutter/wiki/Flutter's-modes
develop:
- very fast edit/refresh
- Checked mode is possible
- Interpreted or JITed (device vs. simulator, possible we'll want to use interpreter in both places when possible)
- Observatory enabled.
profile:
- Checked mode code removed
- Ahead of time compiled (AOTC) when possible
- Observatory enabled.
deploy:
- checked mode removed
- ATOC
- Observatory removed.
We don't have to actually make the configs different to begin with, but we do need to expose this difference in the flutter tool in order to make space for the backend work (like wiring in the Interpreter mode on iOS develop on devices).
@chinmaygarde @devoncarew
more docs on the modes are here: https://github.com/flutter/flutter/wiki/Flutter's-modes
develop:
profile:
deploy:
We don't have to actually make the configs different to begin with, but we do need to expose this difference in the
fluttertool in order to make space for the backend work (like wiring in the Interpreter mode on iOSdevelopon devices).@chinmaygarde @devoncarew