Fixed
Status Update
Comments
jb...@google.com <jb...@google.com>
jb...@google.com <jb...@google.com> #2
Fix is checked in, but probably won't be out until the release after the upcoming one.
mf...@google.com <mf...@google.com> #3
Awesome! Really cool to see a fix come out for this issue even after I had forgotten about it! Wow! I'm impressed :)
Description
~/dart/flutter φ sdkmanager install 'system-images;android-25;google_apis_playstore;x86'
Warning: Failed to find package install
If you *did* fall for the same trap that I did, then your brain inserted the word "to" between "package" and "install", ie, "Warning: cannot find package *to* install". This leaves me nothing to go on, granted, its an illusion!
Three things of note:
1. "sdkmanager foo" being a command to install the package foo (which isn't even an sdk)...is confusing
2. putting quotes around the package name for this error would break the brain illusion.
3. Why is this a warning? The whole installation process did nothing. That seems bigger than a warning.
Didn't see anyone else on stack overflow or anything hitting this, but I think #2 is going to hit other users.
With the fix it would be
Warning: Failed to find package "install"
which is much clearer.