Reputation: 2695
I just updated Qt using Maintenance Tool. Now when I run application in release mode I get error.
This application failed to start because it could not find or load the Qt platform plugin "windows".
Available platform plugins are: minimal, offscreen, windows.
Reinstalling the application may fix this problem.
This solution did not help me: https://stackoverflow.com/a/20496175/1034253
In debug mode the application works good.
Upvotes: 0
Views: 1101
Reputation: 51
check the other Qt dlls in your executable directory. For release mode you must always use the release version of the dlls. For Example Qt5Core.dll instead of Qt5Cored.dll
Upvotes: 1