- 19 Jun, 2017 1 commit
-
-
Chris Bracken authored
This reverts commit b2909a24. This resubmits the following patches: 1. Use Xcode instruments to list devices (#10801) Eliminates the dependency on idevice_id from libimobiledevice. Instead, uses Xcode built-in functionality. 2. Make device discovery asynchronous (#10803) Migrates DeviceDiscovery.devices and all device-specific lookup to be asynchronous.
-
- 17 Jun, 2017 2 commits
-
-
Chris Bracken authored
* Revert "Make device discovery asynchronous (#10803)" This reverts commit 972be9c8. * Revert "Use Xcode instruments to list devices (#10801)" This reverts commit 37bb5f13. This is to resolve a failure that looks related to a bad install of Xcode 8.0 on our build bots and should be reinstated when the infra issue is diagnosed and resolved. Instruments worked well when this was originally landed, and on the following commit, but started failing two commits after this originally landed. Manual invocation of instruments on the build host currently results in: ``` dyld: Library not loaded: @rpath/InstrumentsAnalysisCore.framework/Versions/A/InstrumentsAnalysisCore Referenced from: /Applications/Xcode8.0.app/Contents/Developer/usr/bin/instruments Reason: image not found Abort trap: 6 ``` It appears the /Applications/Xcode8.0.app/Contents/Applications directory (which contains Instruments) is missing on the host.
-
Chris Bracken authored
Migrates DeviceDiscovery.devices and all device-specific lookup to be asynchronous.
-
- 02 Jun, 2017 1 commit
-
-
Devon Carew authored
* have app loggers log to their parent logger * rename field to parent * add todo * revert flutter_tools.iml change * ping the bots
-
- 19 May, 2017 1 commit
-
-
Todd Volkert authored
-
- 08 May, 2017 1 commit
-
-
Todd Volkert authored
Spawned from a discussion in https://github.com/flutter/flutter-intellij/pull/1003
-
- 03 May, 2017 2 commits
-
-
Todd Volkert authored
This message will be picked up by IntelliJ and shown to the user in a toast.
-
xster authored
* Let printError print bold as well * review notes
-
- 28 Apr, 2017 1 commit
-
-
Devon Carew authored
-
- 27 Apr, 2017 2 commits
-
-
Devon Carew authored
* add a regression test for daemon device notification * revert event send simplification
-
Zachary Anderson authored
-
- 26 Apr, 2017 2 commits
-
-
Todd Volkert authored
Fixes #9612
-
Todd Volkert authored
`adb` can sometimes hang, which will in turn hang the Dart isolate if we're using `Process.runSync()`. This changes many of the `Device` methods to return `Future<T>` in order to allow them to use the async process methods. A future change will add timeouts to the associated calls so that we can properly alert the user to the hung `adb` process. This is work towards #7102, #9567
-
- 12 Apr, 2017 1 commit
-
-
Ian Hickson authored
* Fix tests to use Ahem, and helpful changes around that - Fix fonts that had metric-specific behaviours. - LiveTestWidgetsFlutterBinding.allowAllFrames has been renamed to LiveTestWidgetsFlutterBinding.framePolicy. - LiveTestWidgetsFlutterBinding now defaults to using a frame policy that pumps slightly more frames, to animate the pointer crosshairs. - Added "flutter run --use-test-fonts" to enable Ahem on devices. - Changed how idle() works to be more effective in live mode. - Display the test name in live mode (unless ahem fonts are enabled). - Added a toString to TextSelectionPoint. - Style nit fixes. * Roll engine to get Ahem changes. * Update tests for dartdoc changes. * Fix flutter_tools tests
-
- 07 Apr, 2017 1 commit
-
-
Alexandre Ardhuin authored
-
- 29 Mar, 2017 1 commit
-
-
Alexandre Ardhuin authored
-
- 15 Mar, 2017 1 commit
-
-
Alexandre Ardhuin authored
-
- 10 Mar, 2017 1 commit
-
-
Todd Volkert authored
* Rename `Device.platform` to `Device.targetPlatform` to avoid collision with the exported variable from `platform.dart`
-
- 04 Mar, 2017 1 commit
-
-
Chris Bracken authored
-
- 20 Feb, 2017 1 commit
-
-
Alexandre Ardhuin authored
-
- 17 Feb, 2017 1 commit
-
-
Todd Volkert authored
Fixes #8209
-
- 09 Feb, 2017 2 commits
-
-
Alexandre Ardhuin authored
-
xster authored
* Add indent option to logger and indent non-flutter nested output * Add a missed override * Formatting
-
- 08 Feb, 2017 1 commit
-
-
Devon Carew authored
* improve the logger ui a bit for elapsed times * invert param * update daemon.dart
-
- 02 Feb, 2017 1 commit
-
-
Michael Goderbauer authored
-
- 28 Jan, 2017 1 commit
-
-
Ian Hickson authored
-
- 27 Jan, 2017 2 commits
-
-
Ian Hickson authored
Move the drive/run common stuff to RunCommandBase, rather than the superclass which applies to everything. Implement --no-resident (fixes https://github.com/flutter/flutter/issues/5448). This is particularly useful when running flutter from scripts. Rename RunAndStayResident to ColdRunner.
-
Ian Hickson authored
...and add --diagnostic-port. ...and document port 0.
-
- 23 Jan, 2017 1 commit
-
-
Ian Hickson authored
...now that we have generic methods, their types need to be specified too.
-
- 20 Jan, 2017 1 commit
-
-
Devon Carew authored
* proxy service extension calls through the daemon protocol * add test for app.callServiceExtension
-
- 10 Jan, 2017 1 commit
-
-
Devon Carew authored
* pass additional named params to daemon run * add a trailing comma
-
- 09 Jan, 2017 1 commit
-
-
Todd Volkert authored
This ensures that accidental usages of dart:io's file API don't creep in over time.
-
- 07 Jan, 2017 1 commit
-
-
Todd Volkert authored
This removes direct file access from within flutter_tools in favor of using `package:file` via a `FileSystem` that's accessed via the `ApplicationContext`. This lays the groundwork for us to be able to easily swap out the underlying file system when running Flutter tools, which will be used to provide a record/replay file system, analogous to what we have for process invocations.
-
- 12 Dec, 2016 1 commit
-
-
Devon Carew authored
-
- 07 Dec, 2016 1 commit
-
-
Devon Carew authored
* have flutter run --machine log to stdout * add a test * add docs; fix type annotation lint
-
- 01 Dec, 2016 1 commit
-
-
Dan Rubel authored
* reapply handle new Observatory URL changes Fixes https://github.com/flutter/flutter/issues/6843 * allow non numeric IPv4 addresses Fixes https://github.com/flutter/flutter/issues/7051
-
- 29 Nov, 2016 1 commit
-
-
John McCutchan authored
-
- 28 Nov, 2016 2 commits
-
-
Dan Rubel authored
- 22 Nov, 2016 1 commit
-
-
Devon Carew authored
-