Skip to content

Commit 3f1c308

Browse files
authored
Don't require the AVD folder to exist in order to run flutter emulators (flutter#25154)
Fixes flutter#24750.
1 parent 7120dab commit 3f1c308

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/flutter_tools/lib/src/android/android_workflow.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class AndroidWorkflow implements Workflow {
4343
bool get canLaunchDevices => androidSdk != null && androidSdk.validateSdkWellFormed().isEmpty;
4444

4545
@override
46-
bool get canListEmulators => getEmulatorPath(androidSdk) != null && getAvdPath() != null;
46+
bool get canListEmulators => getEmulatorPath(androidSdk) != null;
4747
}
4848

4949
class AndroidValidator extends DoctorValidator {

0 commit comments

Comments
 (0)