1. 04 Mar, 2017 1 commit
  2. 28 Feb, 2017 1 commit
  3. 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
  4. 23 Feb, 2017 1 commit
  5. 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
  6. 20 Feb, 2017 1 commit
    • 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