1. 08 Feb, 2019 1 commit
    • Michael Klimushyn's avatar
      Warn when gradle builds fail because of AndroidX (#27566) · 4a9e5bc1
      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
      4a9e5bc1
  2. 06 Feb, 2019 1 commit
  3. 05 Feb, 2019 2 commits
  4. 30 Jan, 2019 1 commit
  5. 29 Jan, 2019 2 commits
  6. 26 Jan, 2019 1 commit
  7. 25 Jan, 2019 1 commit
  8. 23 Jan, 2019 2 commits
  9. 19 Jan, 2019 1 commit
    • Ian Hickson's avatar
      [O] Removing all timeouts (mark II) (#26736) · 31a9626c
      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.
      31a9626c
  10. 17 Jan, 2019 1 commit
  11. 16 Jan, 2019 1 commit
  12. 10 Jan, 2019 1 commit
    • Stanislav Baranov's avatar
      Add logic for creating rollback dynamic patches. (#26312) · e2c03491
      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.
      e2c03491
  13. 09 Jan, 2019 1 commit
  14. 27 Dec, 2018 1 commit
  15. 21 Dec, 2018 4 commits
    • Stanislav Baranov's avatar
      Friendlier flags for Dart compilation training. (#25645) · 6d6ada14
      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.
      6d6ada14
    • Pranay Airan's avatar
      Adding support for android app bundle - Issue #17829 (#24440) · 368cd7da
      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
      368cd7da
    • Ian Hickson's avatar
      Revert "[O] Remove many timeouts. (#23531)" (#25646) · 8426910a
      Ian Hickson authored
      This reverts commit 76f70810.
      8426910a
    • Ian Hickson's avatar
      [O] Remove many timeouts. (#23531) · 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...
      76f70810
  16. 20 Dec, 2018 2 commits
  17. 19 Dec, 2018 1 commit
  18. 18 Dec, 2018 1 commit
  19. 17 Dec, 2018 1 commit
  20. 12 Dec, 2018 1 commit
  21. 11 Dec, 2018 1 commit
  22. 19 Nov, 2018 1 commit
  23. 09 Nov, 2018 1 commit
  24. 08 Nov, 2018 1 commit
  25. 06 Nov, 2018 1 commit
  26. 30 Oct, 2018 1 commit
  27. 20 Oct, 2018 1 commit
  28. 18 Oct, 2018 2 commits
  29. 17 Oct, 2018 1 commit
  30. 11 Oct, 2018 1 commit
    • Greg Spencer's avatar
      Re-land text wrapping/color PR (#22831) · 081d2a7a
      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.
      081d2a7a
  31. 10 Oct, 2018 1 commit
  32. 06 Oct, 2018 1 commit