1. 09 Aug, 2023 1 commit
    • Victoria Ashworth's avatar
      New tooling for iOS 17 physical devices (#131865) · d631b262
      Victoria Ashworth authored
      This PR includes the following changes. These changes only apply to iOS 17 physical devices.
      
      | Command | Change Description  | Changes to User Experience |
      | ------------- | ------------- | ------------- |
      | `flutter run --release` | Uses `devicectl` to install and launch application in release mode.  | No change.  |
      | `flutter run`  | Uses Xcode via automation scripting to run application in debug and profile mode. | Xcode will be opened in the background. Errors/crashes may be caught in Xcode and therefore may not show in terminal. |
      | `flutter run --use-application-binary=xxxx` | Creates temporary empty Xcode project and use Xcode to run via automation scripting in debug and profile. | Xcode will be opened in the background. Errors/crashes may be caught in Xcode and therefore may not show in terminal.  |
      | `flutter install` | Uses `devicectl` to check installed apps, install app, uninstall app.  | No change.  |
      | `flutter screenshot` | Will return error.  | Will return error.  |
      
      Other changes include:
      * Using `devicectl` to get information about the device
      * Using `idevicesyslog` and Dart VM logging for device logs
      
      Note:
      Xcode automation scripting (used in `flutter run` for debug and profile) does not work in a headless (without a UI) interface. No known workaround.
      
      Fixes https://github.com/flutter/flutter/issues/128827, https://github.com/flutter/flutter/issues/128531.
      d631b262
  2. 20 Jun, 2023 1 commit
  3. 22 May, 2023 1 commit
  4. 05 May, 2023 1 commit
  5. 04 Apr, 2023 1 commit
  6. 29 Mar, 2023 1 commit
  7. 15 Mar, 2023 1 commit
  8. 20 Jan, 2023 1 commit
  9. 19 Jan, 2023 2 commits
    • Jenn Magder's avatar
      Revert "Support iOS wireless debugging (#118104)" (#118826) · cbf2e168
      Jenn Magder authored
      This reverts commit 5cd2d4c6.
      cbf2e168
    • Victoria Ashworth's avatar
      Support iOS wireless debugging (#118104) · 5cd2d4c6
      Victoria Ashworth authored
      * setup wireless debugging to use device IP
      
      * fix tests
      
      * fix unused var and missing annotation
      
      * remove unneeded try catch
      
      * remove commented out line, change null to package id
      
      * better way to get package id
      
      * update mDNS lookup to continously check for server, add messaging if takes too long to find observatory url, update flutter drive to enable publish-port if using network device
      
      * Refactor mDNS Discovery to poll for observatories and better handle multiple instances of the same app. Update drive command to make publish-port more stable. Update attach for iOS to only use Protocol Discovery if applicable, run mDNS and Protocol Discovery simultaneously, handle --debug-port/--debug-url/--device-vmservice-port, continously poll for obseravtories with mDNS, include port in error message when mutliple available
      
      * add and update comments, use logger spinner intead of timer in flutter attach, other small improvements
      
      * add newline to message so next log won't be on same line
      
      * fix install/waiting for permission status progress so it doens't double print the time it took.
      
      * only print backtrace if observatory times out on a physical usb connected device
      
      * fix test
      
      * Update related references from Observatory to Dart VM Service
      
      * fix test
      5cd2d4c6
  10. 18 Jun, 2022 1 commit
  11. 07 May, 2022 1 commit
  12. 27 Apr, 2022 1 commit
  13. 22 Feb, 2022 1 commit
  14. 11 Nov, 2021 1 commit
  15. 02 Nov, 2021 1 commit
  16. 19 Oct, 2021 1 commit
  17. 15 Oct, 2021 2 commits
  18. 08 Oct, 2021 1 commit
  19. 16 Aug, 2021 1 commit
  20. 23 Jun, 2021 1 commit
  21. 14 Jun, 2021 1 commit
  22. 17 Apr, 2021 1 commit
  23. 14 Apr, 2021 1 commit
  24. 03 Mar, 2021 1 commit
  25. 08 Feb, 2021 1 commit
  26. 04 Feb, 2021 1 commit
    • Jonah Williams's avatar
      [flutter_tools] move process manager into tool (#75350) · 8b6baae4
      Jonah Williams authored
      Our current top crasher is an unclear error when ProcessManager fails to resolve an executable path. To fix this, we'd like to being adjusting the process resolution logic and adding more instrumentation to track failures. In order to begin the process, the ProcessManager has been folded back into the flutter tool
      8b6baae4
  27. 27 Jan, 2021 2 commits
  28. 13 Jan, 2021 1 commit
  29. 07 Jan, 2021 1 commit
  30. 23 Nov, 2020 1 commit
  31. 05 Nov, 2020 1 commit
  32. 04 Nov, 2020 1 commit
  33. 30 Oct, 2020 1 commit
    • Jonah Williams's avatar
      [flutter_tools] remove fallback discovery and observatory timeout (#68756) · 44d0e52d
      Jonah Williams authored
      The flutter run failures are cause by the application occasionally taking a long time to start up. This caused the ios fallback discovery to kick in, which will always fail if the application hasn't started. Solution: remove the iOS fallback discovery and wait up to 30 seconds.
      
      This has not proven to reduce the flakes, but it does at least remove one error case and removes code that will no longer work without the mDNS fallback.
      44d0e52d
  34. 23 Oct, 2020 1 commit
  35. 14 Oct, 2020 1 commit
  36. 12 Oct, 2020 2 commits