Skip to content
  • 0 Votes
    4 Posts
    812 Views
    mrjjM
    @Dariusz Hi Yes you can. see this example (and reads the docs SGaist links) https://doc.qt.io/qt-6/qtwidgets-tools-plugandpaint-app-example.html Here the drawing app is extended with extra plugsins. Do note, however, that you will need to do as sample does in "The next step is to load dynamic plugins" where is enumerate the files in a given folder using const auto entryList = pluginsDir.entryList(QDir::Files); for (const QString &fileName : entryList) { QPluginLoader loader(pluginsDir.absoluteFilePath(fileName)); ... so its not 100% automatic but almost ;)
  • 0 Votes
    3 Posts
    598 Views
    K
    Found a bug when adding libraries there. Here is a link to the bug report https://bugreports.qt.io/browse/QTCREATORBUG-22255 The only way to get it to work is with the libraries in the same folder as the project PWD. Otherwise i have gotten always two concatenated absolute path which are causing an error message in building APK archive.