1. 13 Oct, 2016 1 commit
  2. 13 Sep, 2016 1 commit
  3. 09 Aug, 2016 1 commit
  4. 27 Jul, 2016 1 commit
  5. 20 Jul, 2016 1 commit
  6. 24 May, 2016 1 commit
    • Todd Volkert's avatar
      iOS tools cleanup (#4161) · cc8c78ad
      Todd Volkert authored
      * iOS tools cleanup
      
      1) Fix `flutter install` on both device and simulator to refer to the actual
         bundle and not just the .generated folder
      2) Fix `flutter run` on device to actually run vs just installing
      
      Still TODO:
      1) Discovered that isAppInstalled on iOS simulator always reports true,
         meaning it'll never actually try to install the app.
      
      Fixes #3947
      Fixes #1823
      cc8c78ad
  7. 12 May, 2016 1 commit
  8. 11 May, 2016 1 commit
  9. 27 Apr, 2016 1 commit
    • Devon Carew's avatar
      Flutter run (#3553) · b0dca796
      Devon Carew authored
      * rework flutter run
      
      * fix npe with --debug-port
      
      * connect to obs and exit when that conneciton closes
      
      * update todos
      b0dca796
  10. 21 Mar, 2016 2 commits
  11. 17 Mar, 2016 1 commit
  12. 14 Mar, 2016 3 commits
  13. 12 Mar, 2016 1 commit
  14. 11 Mar, 2016 1 commit
  15. 08 Mar, 2016 1 commit
  16. 26 Feb, 2016 1 commit
  17. 24 Feb, 2016 1 commit
  18. 22 Feb, 2016 1 commit
  19. 21 Feb, 2016 1 commit
  20. 19 Feb, 2016 2 commits
  21. 01 Feb, 2016 1 commit
  22. 22 Jan, 2016 1 commit
  23. 21 Dec, 2015 1 commit
  24. 29 Nov, 2015 1 commit
    • Adam Barth's avatar
      Clean up code organization in flutter_tools · 9662d49e
      Adam Barth authored
      1) Moved basic utility code into base/ directory to make it clear which code
         doesn't depend on Flutter-specific knowldge.
      2) Move the CommandRunner subclasses into a runner/ directory because these
         aren't commands themselves.
      9662d49e
  25. 10 Nov, 2015 1 commit
  26. 31 Oct, 2015 1 commit
  27. 13 Oct, 2015 1 commit
  28. 12 Oct, 2015 1 commit
    • Adam Barth's avatar
      Teach sky_tools about prebuilt artifacts · bdd20661
      Adam Barth authored
      This patch makes `flutter start` work without a clone of the engine git
      repository. Making this work pulled a relatively large refactor of how the
      commands interact with application packages and devices. Now commands that want
      to interact with application packages or devices inherit from a common base
      class that holds stores of those objects as members.
      
      In production, the commands download and connect to devices based on the build
      configuration stored on the FlutterCommandRunner. In testing, these fields are
      used to mock out the real application package and devices.
      bdd20661