Commit a6f0c97a authored by Adam Barth's avatar Adam Barth

Merge pull request #2046 from abarth/background_compilation

Enable background compilation
parents 2772f203 b7ee5980
...@@ -241,6 +241,7 @@ class AndroidDevice extends Device { ...@@ -241,6 +241,7 @@ class AndroidDevice extends Device {
'-a', 'android.intent.action.RUN', '-a', 'android.intent.action.RUN',
'-d', _deviceBundlePath, '-d', _deviceBundlePath,
'-f', '0x20000000', // FLAG_ACTIVITY_SINGLE_TOP '-f', '0x20000000', // FLAG_ACTIVITY_SINGLE_TOP
'--ez', 'enable-background-compilation', 'true',
]); ]);
if (checked) if (checked)
cmd.addAll(<String>['--ez', 'enable-checked-mode', 'true']); cmd.addAll(<String>['--ez', 'enable-checked-mode', 'true']);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment