Unverified Commit 3f1c308e authored by Danny Tuppeny's avatar Danny Tuppeny Committed by GitHub

Don't require the AVD folder to exist in order to run `flutter emulators` (#25154)

Fixes #24750.
parent 7120dab5
......@@ -43,7 +43,7 @@ class AndroidWorkflow implements Workflow {
bool get canLaunchDevices => androidSdk != null && androidSdk.validateSdkWellFormed().isEmpty;
@override
bool get canListEmulators => getEmulatorPath(androidSdk) != null && getAvdPath() != null;
bool get canListEmulators => getEmulatorPath(androidSdk) != null;
}
class AndroidValidator extends DoctorValidator {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment