Add native plugin build support (#10)

Fixed #3
This commit is contained in:
Hidenori Matsubayashi
2021-07-19 17:49:39 +09:00
committed by GitHub
parent 05349c731d
commit eacaccf77b
6 changed files with 225 additions and 48 deletions
+5 -1
View File
@@ -3,6 +3,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// @dart = 2.8
import 'package:flutter_tools/src/base/file_system.dart';
import 'package:flutter_tools/src/project.dart';
@@ -50,5 +52,7 @@ class ELinuxProject extends FlutterProjectPlatform
Directory get ephemeralDirectory =>
managedDirectory.childDirectory('ephemeral');
Future<void> ensureReadyForPlatformSpecificTooling() async {}
Future<void> ensureReadyForPlatformSpecificTooling() async {
await refreshELinuxPluginsList(parent);
}
}