1. 05 Nov, 2020 1 commit
  2. 04 Nov, 2020 2 commits
  3. 02 Nov, 2020 1 commit
    • Andy Weiss's avatar
      [flutter_tools] Support zipped application bundles for macOS (#68854) · c4ceea39
      Andy Weiss authored
      * [flutter_tools] Support zipped application bundles for macOS
      
      It is not possible to directly produce a directory (.app) in some build systems
      but rather it must be zip'ed before being passed to the tool for
      running. This adds support for attempting to extract an application
      bundle from a zip file if the bundle is not already a directory. This
      uses very similar code from lib/src/application_package.dart which is
      used for extracting an ipa for iOS.
      
      This introduces tests for the macos/application_package.dart behavior which did not exist before. These tests cover the changes in the PR and some of the existing behavior, but do not cover everything in that file.
      c4ceea39
  4. 31 Oct, 2020 1 commit
  5. 30 Oct, 2020 4 commits
  6. 29 Oct, 2020 6 commits
  7. 28 Oct, 2020 3 commits
  8. 27 Oct, 2020 6 commits
  9. 26 Oct, 2020 4 commits
    • Jonah Williams's avatar
      [flutter_tools] Make ApplicationPackageFactory inject dependencies for Android Builds (#67827) · e0ec9a06
      Jonah Williams authored
      * [flutter_tools] simplication of application store logic
      
      * maybe return null
      
      * fix install tests
      
      * Clean up imports
      
      * revert windows test
      
      * remove unused import
      e0ec9a06
    • Jonah Williams's avatar
      [flutter_tools] implement safe file copy with multiple fallbacks (#69000) · 2e54c4a8
      Jonah Williams authored
      The tool observes a large number of unhandled exceptions during the file copy portion of flutter create. it is difficult to tell whether the permission issue is caused by the source/destination, or whether it is due to a bug in dart:io.
      
      To work around this, implement a permission check for both the source and dest files. If either fails, the tool can exit with a more specific message.
      
      If these checks pass, then perform the actual copy. If the copy fails, fallback to manually copying the bytes
      2e54c4a8
    • Alexandre Ardhuin's avatar
    • Jonah Williams's avatar
      [flutter_tools] reland: drive service (#68887) · 183fe75d
      Jonah Williams authored
      Overhaul of flutter drive in order to deliver a better experience, namely:
      
      * flutter run and flutter drive now share more flags, so code paths that were previously only testable on run are now testable on drive.
      * Removes web-initialize-platform as this is no longer used
      * flutter drive correctly sets up a logger that shows native exceptions, by connecting to the vm service.
      * VM service connection now provides access to memory info without launching devtools (only for debug/profile mode)
      
      Web changes
      
      * Passes on the one test in the repo, otherwise the webdriver code has been isolated as much as possible
      
      Additional NNBD related bug fixes:
      
      No longer passes --enable-experiment to the test script. (FYI @blasten ). earlier we might have assumed that the flutter gallery benchmarks would be migrated along side the app and flutter driver, but only the app under test needs to be migrated. The test scripts should never be run with the experiment.
      183fe75d
  10. 23 Oct, 2020 5 commits
  11. 22 Oct, 2020 3 commits
    • Jonah Williams's avatar
      [flutter_tools] refactor drive launch into separate service, split by... · 2e75f52a
      Jonah Williams authored
      [flutter_tools] refactor drive launch into separate service, split by mobile+desktop and web (#68451)
      
      Overhaul of flutter drive in order to deliver a better experience, namely:
      
      flutter run and flutter drive now share more flags, so code paths that were previously only testable on run are now testable on drive.
      Removes web-initialize-platform as this is no longer used
      flutter drive correctly sets up a logger that shows native exceptions, by connecting to the vm service.
      VM service connection now provides access to memory info without launching devtools (only for debug/profile mode)
      Web changes
      
      Passes on the one test in the repo, otherwise the webdriver code has been isolated as much as possible
      
      Additional NNBD related bug fixes:
      
      No longer passes --enable-experiment to the test script. (FYI @blasten ). earlier we might have assumed that the flutter gallery benchmarks would be migrated along side the app and flutter driver, but only the app under test needs to be migrated. The test scripts should never be run with the experiment.
      2e75f52a
    • Jenn Magder's avatar
      App.framework must support iOS 8 for older Flutter projects (#68729) · f63d56e4
      Jenn Magder authored
      * App.framework must support iOS 8 for older Flutter projects
      
      * Fix test
      f63d56e4
    • Jonah Williams's avatar
  12. 21 Oct, 2020 2 commits
  13. 20 Oct, 2020 1 commit
  14. 19 Oct, 2020 1 commit