Fix daemon device discovery crash when Xcode isn't installed#60546
Merged
Conversation
Member
Author
|
Thanks to @helin24 for tracking this down. |
|
|
||
| // cancel any outstanding subscriptions. | ||
| await _observedDeviceEventsSubscription?.cancel(); | ||
| _observedDeviceEventsSubscription = _xcdevice.observedDeviceEvents().listen( |
Contributor
There was a problem hiding this comment.
Is the early return above not sufficient here?
Member
Author
There was a problem hiding this comment.
It is sufficient for this crash, but _xcdevice.observedDeviceEvents() is nullable, callers shouldn't need to understand why it can return null (that it can only return null if Xcode isn't installed).
pcsosinski
pushed a commit
to pcsosinski/flutter
that referenced
this pull request
Jun 30, 2020
pcsosinski
pushed a commit
to pcsosinski/flutter
that referenced
this pull request
Jul 1, 2020
pcsosinski
pushed a commit
that referenced
this pull request
Jul 1, 2020
mingwandroid
pushed a commit
to mingwandroid/flutter
that referenced
this pull request
Sep 6, 2020
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
When Xcode isn't installed, no Android devices shown in Intellij/Android Studio plugins. Crash:
Related Issues
Fallout from #58137, which was cherry-picked as 1.17.4.
flutter/flutter-intellij#4642
#60473
Tests
This test crashes on master, passes on this PR.
Checklist
///).flutter analyze --flutter-repo) does not report any problems on my PR.Breaking Change
Did any tests fail when you ran them? Please read [Handling breaking changes].