- 02 Jun, 2017 1 commit
-
-
Devon Carew authored
* add min version checks for IntelliJ * validate the installed versions of IntelliJ and the flutter plugin * review comments
-
- 26 May, 2017 1 commit
-
-
Chris Bracken authored
Relocates two tests alongside other related tests: * moved code_signing_test.dart alongside other lib/src/ios tests * moved terminal_test.dart alongside other lib/src/base tests
-
- 25 May, 2017 1 commit
-
-
Hans Muller authored
-
- 24 May, 2017 3 commits
-
-
Mikkel Nygaard Ravn authored
-
Mikkel Nygaard Ravn authored
-
xster authored
* Let run default to first profile * fix * review notes
-
- 22 May, 2017 3 commits
-
-
Chris Bracken authored
Does not yet migrate hasIdeviceId since that results in a cascade of breaking interface changes that's significant enough for a separate patch.
-
Chris Bracken authored
Ensure that flutter doctor returns a partial installation status when ideviceid is not installed.
-
Todd Volkert authored
Our emulator detection was based on a simple heuristic that was failing for the Samsung Galaxy S8. Any heuristic is flawed since Android devices can report whatever they want to adb, but this change attempts to tighten the detection by listing known models (by their ro.hardware property). Again, these values could be spoofed by emulator system images, but it's less likely to be an issue than with our previous (and fall-back) heuristic. Fixes #10203 Related: #10248
-
- 21 May, 2017 1 commit
-
-
Alexander Aprelev authored
* Remove '\n' from terminal input. * Use trim instead of replaceAll * Add unit test * Cleanup the test * Fixed lint * Style adjustments * Forgotten @override * Revert "Forgotten @override" Accidently added extra files. This reverts commit 0aba24fc8ea321b3a4d0cd8aed7f589378393d96. * Just @override change
-
- 19 May, 2017 3 commits
-
-
Chris Bracken authored
On failure to configure a mock VM service, we get a useful exception in setUpAll(). This change prevents an additional failure in tearDownAll() that provides no additional useful diagnostic info.
-
Todd Volkert authored
Fixes the broken build in the Chromium bots
-
Todd Volkert authored
-
- 18 May, 2017 1 commit
-
-
xster authored
* first pass * improvements * extract terminal.dart * rebase * add default terminal to context * The analyzer wants the ../ imports in front of the ./ imports * review notes
-
- 16 May, 2017 1 commit
-
-
Todd Volkert authored
For some reaosn, when we discovered our URI, we were re-instantiating the `Completer` instance variable whose future we listen to in `nextUri()`. This led to a race between a caller calling `nextUri()` and us discovering the URI. If we happened to discover our URI before a caller called `nextUri()`, then they would be left waiting on a future from the newly allocated `Completer` (which would never complete). Fixes #10064
-
- 15 May, 2017 1 commit
-
-
xster authored
* blind wrote everything except the user prompt * works * Add some logical refinements * Make certificates unique and add more instructinos * print more info * Add test * use string is empty * review notes * some formatting around commands * add a newline
-
- 12 May, 2017 3 commits
-
-
Ian Hickson authored
-
Ian Hickson authored
-
Ian Hickson authored
This way, you can test things even with a VerboseLogger.
-
- 09 May, 2017 2 commits
-
-
Jason Simmons authored
Add a flutter doctor --android-licenses command that locates and runs the Android SDK license manager (#9892) See https://github.com/flutter/flutter/issues/8438
-
Yegor authored
-
- 08 May, 2017 4 commits
-
-
Michael Goderbauer authored
* Enforce valid package names on flutter create Fixes #9564 * refactor * fix other tests
-
Todd Volkert authored
Spawned from a discussion in https://github.com/flutter/flutter-intellij/pull/1003
-
xster authored
* record doctor failures * fully mock out analytics dependencies
-
xster authored
* handle errors * review notes
-
- 03 May, 2017 2 commits
-
-
Todd Volkert authored
This message will be picked up by IntelliJ and shown to the user in a toast.
-
Todd Volkert authored
-
- 02 May, 2017 1 commit
-
-
xster authored
* Don’t automatically pod setup if the user never did it * fix/add test * rename getters
-
- 27 Apr, 2017 3 commits
-
-
xster authored
FlutterCommand.runCommand subclasses can optionally return a FlutterCommandResult which is used to append additional analytics. Fix flutter run timing report and add a bunch of dimensional data
-
Devon Carew authored
* add a regression test for daemon device notification * revert event send simplification
-
Zachary Anderson authored
-
- 26 Apr, 2017 3 commits
-
-
Todd Volkert authored
Fixes #9612
-
Michael Goderbauer authored
Note: In a cross-platform context `Uri.path` is not a valid file path. Allways use `fs.path.fromUri` to convert.
-
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
-
- 25 Apr, 2017 1 commit
-
-
Michael Goderbauer authored
* Do not lower-case paths during canonicalization. This breaks hot reload on some platfroms with case insensitive file systems. * Add unit tests
-
- 24 Apr, 2017 1 commit
-
-
Todd Volkert authored
It's going to be replaced by #8963 Fixes #8947
-
- 20 Apr, 2017 1 commit
-
-
Alexandre Ardhuin authored
* comprehensive list of lints * add comments to commented out lint * fix unnecessary_this lints * exclude prefer_final_fields
-
- 18 Apr, 2017 2 commits
-
-
Mikkel Nygaard Ravn authored
-
Devon Carew authored
-
- 17 Apr, 2017 1 commit
-
-
John McCutchan authored
- [x] Skip scanning the file system if we already have the Dart dependency set. Fixes #9376 ``` Performing hot reload... Reloaded 1 of 418 libraries in 888ms. Performing hot reload... Reloaded 1 of 418 libraries in 871ms. ** UNTAR dragontail under project root ** Performing hot reload... Reloaded 0 of 418 libraries in 443ms. ** UNTAR dragontail under lib/ ** Performing hot reload... Reloaded 0 of 418 libraries in 385ms. ```
-