1. 13 Feb, 2019 1 commit
    • KyleWong's avatar
      Add android studio process logic for JetBrainsToolbox (#27687) · f2004b8f
      KyleWong authored
      * Make plugin path search logic use version check as a fallback.
      
      * In JetBrainsToolbox, Info.plist would be just some kind of wrapper, we need a double check before get the real one.
      
      * Use Regex to get content instead of `default command` to avoid error output as there could be no JetBrainsToolboxApp key/value for a normal Info.plist(Android Studio.)
      f2004b8f
  2. 06 Feb, 2019 1 commit
  3. 09 Jan, 2019 1 commit
  4. 04 Oct, 2018 1 commit
  5. 02 Oct, 2018 1 commit
  6. 01 Oct, 2018 1 commit
  7. 12 Sep, 2018 2 commits
  8. 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
      8c79f40d
  9. 09 Jul, 2018 1 commit
  10. 31 May, 2018 1 commit
  11. 04 Apr, 2018 1 commit
  12. 28 Mar, 2018 1 commit
  13. 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
      614df694
  14. 07 Jul, 2017 1 commit
  15. 29 Jun, 2017 1 commit
  16. 02 Jun, 2017 1 commit
  17. 09 May, 2017 2 commits
  18. 04 Apr, 2017 1 commit
  19. 29 Mar, 2017 1 commit
  20. 25 Mar, 2017 1 commit
  21. 23 Mar, 2017 1 commit
  22. 22 Mar, 2017 1 commit
  23. 04 Mar, 2017 1 commit
  24. 28 Feb, 2017 1 commit
  25. 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
  26. 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
  27. 21 Feb, 2017 1 commit
  28. 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