[flutter_tools] make android deps no longer required for flutter doctor (#68533)

This commit is contained in:
Jonah Williams 2020-10-23 12:37:04 -07:00 committed by GitHub
parent 9f6b575ef1
commit 424ea0958b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,13 +25,6 @@ class DoctorCommand extends FlutterCommand {
@override
final String name = 'doctor';
@override
Future<Set<DevelopmentArtifact>> get requiredArtifacts async => <DevelopmentArtifact>{
// This is required because the gradle host-only tests do not correctly specify
// their dependencies.
DevelopmentArtifact.androidGenSnapshot,
};
@override
final String description = 'Show information about the installed tooling.';