-
Notifications
You must be signed in to change notification settings - Fork 30.1k
Closed
flutter/engine
#30760Labels
P2Important issues not at the top of the work listImportant issues not at the top of the work lista: desktopRunning on desktopRunning on desktopplatform-windowsBuilding on or for Windows specificallyBuilding on or for Windows specificallyr: fixedIssue is closed as already fixed in a newer versionIssue is closed as already fixed in a newer version
Description
Windows desktop applications refer to two or more plugins. When the application is closed, only one plugin C++ destructor is called
the first plugin's destructor
MyjdcPlugin::~MyjdcPlugin() {
std::cout << "MyjdcPlugin::~MyjdcPlugin()" << std::endl;
}
the second plugin's destructor
GojdcPlugin::~GojdcPlugin() {
std::cout << "GojdcPlugin::~GojdcPlugin()" << std::endl;
}
when the app closed, only output:
MyjdcPlugin::~MyjdcPlugin()
flutter --version
Flutter 2.5.3 • channel stable • https://github.com/flutter/flutter.git
Framework • revision 18116933e7 (3 weeks ago) • 2021-10-15 10:46:35 -0700
Engine • revision d3ea636dc5
Tools • Dart 2.14.4
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
P2Important issues not at the top of the work listImportant issues not at the top of the work lista: desktopRunning on desktopRunning on desktopplatform-windowsBuilding on or for Windows specificallyBuilding on or for Windows specificallyr: fixedIssue is closed as already fixed in a newer versionIssue is closed as already fixed in a newer version