Hello tortoisedoc, thanks for the link. I have not seen that. Also this also did net help me in my case. I already managed to create a working plugin, my problem was to get it accepted by the validator. On GitHub I looked through various project until I found one using a plugin. I did everything right, I just registered the plugin wrongly. The first argument in amlRegisterType needs to be "harbour.projectname", also if you register several plugins.
#include
#include
#include "yourPlugIn.h"
int main(int argc, char *argv[])
{
qmlRegisterType("harbour.projectname", 1, 0,"YourPlugIn");
return SailfishApp::main(argc, argv);
}
I hope this was meant by the FAQ, I am still not certain.
↧