- 08 Feb, 2019 1 commit
-
-
Michael Klimushyn authored
Try to detect Gradle error messages that hint at AndroidX problems, and warn in the logs about the potential problem and point to documentation on how to fix the issue. Unfortunately the Gradle errors based on this root issue are varied and project dependent. It's probably better to still leave the message intact in case the problem is unrelated. Also filters out the plugin warning message pending in flutter/plugins#1138. It's still valuable to add that for people on previous versions of Flutter, but this link should override that message for anyone on an up to date version of Flutter. #27106
-
- 06 Feb, 2019 1 commit
-
-
KyleWong authored
-
- 05 Feb, 2019 2 commits
- 30 Jan, 2019 1 commit
-
-
sjindel-google authored
-
- 29 Jan, 2019 2 commits
-
-
Alexandre Ardhuin authored
-
Chinmay Garde authored
-
- 26 Jan, 2019 1 commit
-
-
Jonah Williams authored
-
- 25 Jan, 2019 1 commit
-
-
tonyzhao1 authored
-
- 23 Jan, 2019 2 commits
-
-
Dan Field authored
* Detect Android SDK 28/28.0.3 * revert minimumAndroidSdkVersion const change
-
Alexandre Ardhuin authored
* fix some bad indentations * remove suspicious line
-
- 19 Jan, 2019 1 commit
-
-
Ian Hickson authored
These are essentially self-inflicted race conditions. Instead of timeouts we're going to try a more verbose logging mechanism that points out when things are taking a long time.
-
- 17 Jan, 2019 1 commit
-
-
Stanislav Baranov authored
-
- 16 Jan, 2019 1 commit
-
-
Vyacheslav Egorov authored
Newer NDKs switched to clang which by default uses system linker, instead we need to force it to use appropriate toolchain linker by passing -fuse-ld= command line flag. Fixes #23458
-
- 10 Jan, 2019 1 commit
-
-
Stanislav Baranov authored
Before this change, rolling back a patch relied on deleting the patch file from the server completely. This PR implements a more reliable approach where developer needs to create a physical rollback patch file. This is more robust to mistakenly taking down a patch from user devices.
-
- 09 Jan, 2019 1 commit
-
-
KyleWong authored
-
- 27 Dec, 2018 1 commit
-
-
Stanislav Baranov authored
Unique patch numbers are mainly useful for canary and A-B testing, but otherwise complicate things and can now be omitted.
-
- 21 Dec, 2018 4 commits
-
-
Stanislav Baranov authored
* Renamed --save-compilation-trace to flutter run --train. * Renamed --precompile=<file> to --compilation-trace-file=<file>. * In dynamic mode, made JIT snapshot the default, instead of kernel file.
-
Pranay Airan authored
* adding support for android app bundle. * removing the debug statement. * fixing formatting and code review changes. * Revert "fixing formatting and code review changes." This reverts commit 2041d459f335242555a0b75e445343134c245494. * Fixing code formatting issues. * updating review comments fixing comments and spacing. * changing and to & to rerun the CI and tests. * updating the comment to re-run the test updating the comment to re-run the test * fixing the formatting. * updating comments to re-trigger build updating comments to re-trigger build
-
Ian Hickson authored
This reverts commit 76f70810.
-
Ian Hickson authored
* Remove many timeouts. These are essentially self-inflicted race conditions. Instead of timeouts we're going to try a more verbose logging mechanism that points out when things are taking a long time. * Get the attach tests to pass. * Apply review comments from Todd * More review comment fixes * Put back the extended timeouts here now that I know why we have them...
-
- 20 Dec, 2018 2 commits
-
-
Stanislav Baranov authored
-
Stanislav Baranov authored
-
- 19 Dec, 2018 1 commit
-
-
tonyzhao1 authored
-
- 18 Dec, 2018 1 commit
-
-
Stanislav Baranov authored
-
- 17 Dec, 2018 1 commit
-
-
Danny Tuppeny authored
* Fall back to ANDROID_SDK_ROOT if ANDROID_HOME is not set And update descriptions to use the non-deprecated ANDROID_SDK_ROOT. Fixes #15114. * Remove trailing whitespace * Update dev/devicelab/lib/framework/adb.dart Co-Authored-By:
DanTup <danny@tuppeny.com> * Reformat long line
-
- 12 Dec, 2018 1 commit
-
-
Danny Tuppeny authored
Make doctor output consistent between VS Code/IntelliJ/Android Studio when plugins are missing (#25269) * Update VS Code validator to match Android Studio - Now shows a tick (instead of partial) if installed - Now shows a cross (instead of dot) if extension is not installed Fixes #22931.
-
- 11 Dec, 2018 1 commit
-
-
Danny Tuppeny authored
Fixes #24750.
-
- 19 Nov, 2018 1 commit
-
-
Victor Florintsev authored
This is the hardware used in the Samsung Galaxy J7
-
- 09 Nov, 2018 1 commit
-
-
Jonah Williams authored
-
- 08 Nov, 2018 1 commit
-
-
Ian Hickson authored
We have templates now.
-
- 06 Nov, 2018 1 commit
-
-
jslavitz authored
* Improves error message and adds test.
-
- 30 Oct, 2018 1 commit
-
-
Greg Spencer authored
Stop wrapping adb, gradle and ios logger output, and update terminal wrapping column dynamically. (#23592) Subcommand output (gradle, adb, etc) is no longer wrapped, and wrapping notices when the terminal column width changes dynamically now. Fixes #23267. Fixes #23266.
-
- 20 Oct, 2018 1 commit
-
-
Stanislav Baranov authored
-
- 18 Oct, 2018 2 commits
-
-
Sebastian Roth authored
- 17 Oct, 2018 1 commit
-
-
Jacob Richman authored
--track-widget-creation=false to --track-widget-creation=true but not when switching from --track-widget-creation=true to --track-widget-creation=false due to the surprising behavior of Gradle @Optional inputs.
-
- 11 Oct, 2018 1 commit
-
-
Greg Spencer authored
This attempts to re-land #22656. There are two changes from the original: I turned off wrapping completely when not sending output to a terminal. Previously I had defaulted to wrapping at and arbitrary 100 chars in that case, just to keep long messages from being too long, but that turns out the be a bad idea because there are tests that are relying on the specific form of the output. It's also pretty arbitrary, and mostly people sending output to a non-terminal will want unwrapped text. I found a better way to terminate ANSI color/bold sequences, so that they can be embedded within each other without needed quite as complex a dance with removing redundant sequences. As part of these changes, I removed the Logger.supportsColor setter so that the one source of truth for color support is in AnsiTerminal.supportsColor. * Turn on line wrapping again in usage and status messages, adds ANSI color to doctor and analysis messages. (#22656) This turns on text wrapping for usage messages and status messages. When on a terminal, wraps to the width of the terminal. When writing to a non-terminal, wrap lines at a default column width (currently defined to be 100 chars). If --no-wrap is specified, then no wrapping occurs. If --wrap-column is specified, wraps to that column (if --wrap is on). Adds ANSI color to the doctor and analysis output on terminals. This is in this PR with the wrapping, since wrapping needs to know how to count visible characters in the presence of ANSI sequences. (This is just one more step towards re-implementing all of Curses for Flutter. :-)) Will not print ANSI sequences when sent to a non-terminal, or of --no-color is specified. Fixes ANSI color and bold sequences so that they can be combined (bold, colored text), and a small bug in indentation calculation for wrapping. Since wrapping is now turned on, also removed many redundant '\n's in the code.
-
- 10 Oct, 2018 1 commit
-
-
Jorge Coca authored
Fixes https://github.com/flutter/flutter/issues/19507
-
- 06 Oct, 2018 1 commit
-
-
Greg Spencer authored
Revert "Turn on line wrapping in usage and status messages, adds ANSI color to doctor and analysis messages. (#22656)" (#22759) This reverts commit e4386321 because it breaks 160 benchmarks, and several devicelab tests, due to changing the format of the output.
-