1. 04 Oct, 2018 1 commit
  2. 02 Oct, 2018 1 commit
  3. 01 Oct, 2018 1 commit
  4. 12 Sep, 2018 2 commits
  5. 18 Aug, 2018 1 commit
    • Ian Hickson's avatar
      Fixes resulting from audit of issues links (#20772) · 8c79f40d
      Ian Hickson authored
      * Fixes resulting from audit of issues links
      
      I looked at every link to GitHub in our repo. For cases where we had a TODO that was waiting for a bug to be fixed, and the bug has now been fixed, I applied the pending change. For cases where the link was out of date, I updated the link.
      
      * Update run_test.dart
      
      skip this test again since it failed on linux and macos bots
      Unverified
      8c79f40d
  6. 09 Jul, 2018 1 commit
  7. 31 May, 2018 1 commit
  8. 04 Apr, 2018 1 commit
  9. 28 Mar, 2018 1 commit
  10. 28 Feb, 2018 1 commit
    • jcollins-g's avatar
      Android license detector in doctor, take two (#14783) · 614df694
      jcollins-g authored
      * Revert "Revert "Add android license verification to doctor and some refactoring" (#14727)"
      
      This reverts commit d2602947.
      
      * Add tests, fix sdkManagerEnv and use it consistently, and rearrange Status object model
      
      * AnsiSpinner needs to leave the cursor where it found it.
      
      * fix tests
      
      * Const constructor warning only shows up on windows...?
      
      * Avoid crash if we can't find the home directory
      
      * Make pathVarSeparator return a string in the mock
      
      * Implement review comments
      
      * Fix out-of-order problem on stop
      Unverified
      614df694
  11. 07 Jul, 2017 1 commit
  12. 29 Jun, 2017 1 commit
  13. 02 Jun, 2017 1 commit
  14. 09 May, 2017 2 commits
  15. 04 Apr, 2017 1 commit
  16. 29 Mar, 2017 1 commit
  17. 25 Mar, 2017 1 commit
  18. 23 Mar, 2017 1 commit
  19. 22 Mar, 2017 1 commit
  20. 04 Mar, 2017 1 commit
  21. 28 Feb, 2017 1 commit
  22. 24 Feb, 2017 1 commit
    • Jakob Andersen's avatar
      Relax Android Studio version check. (#8389) · 7f9a53b1
      Jakob Andersen authored
      It's not just $HOME/.AndroidStudio2.2, it might also be
      .AndroidStudioPreview2.3, or .AndroidStudioFooBar1.7, or whatever.
      
      Made the Version parser less throw-happy, and relaxed the directory name
      checks to allow for the above.
      
      Fixes #8353.
      7f9a53b1
  23. 22 Feb, 2017 1 commit
    • Jakob Andersen's avatar
      Fix bug parsing Gradle version. (#8326) · 3676ffe4
      Jakob Andersen authored
      * Fix bug parsing Gradle version.
      
      Version from pub_semver requires versions of the format X.Y.Z. Gradle
      doesn't follow semantic versioning, though, so version parsing would
      fail on versions like '3.2'. Fixed by writing a custom Version class.
      
      Also removed a check for apksigner when building Gradle-based projects.
      
      Fixes #8298
      3676ffe4
  24. 21 Feb, 2017 1 commit
  25. 20 Feb, 2017 3 commits
    • Jakob Andersen's avatar
      One more fix for finding Android Studio on macOS. (#8288) · 8b820ccc
      Jakob Andersen authored
      Finally found the command to run tests in checked mode on my system. This one should've been caught by the IDE, but wasn't.
      8b820ccc
    • Jakob Andersen's avatar
      0f3cc6e9
    • Jakob Andersen's avatar
      Teach flutter tools to find gradle (#8241) · 77efc38b
      Jakob Andersen authored
      * Teach flutter tools to find gradle
      
      Flutter tools will now use Gradle from Android Studio, which is now found automatically.
      
      flutter doctor will verify that Android Studio has been installed, and that the included Gradle is at least version 2.14.1.
      
      It is still possible to manually configure the path to Android Studio (flutter config --android-studio-dir=XXX) or Gradle (flutter config --gradle-dir=XXX), but this should only be necessary if they're installed somewhere non-standard.
      
      Only tested on Linux and macOS for now.
      
      Fixes #8131
      77efc38b