Hi everyone :)
has anyone ever used qmlRegisterType on Qt Android port?
I'm using qmlRegisterType<biviewer>("Test", 1, 0, "Viewer");
to expose my biviewer to QML, and I'm calling qmlRegisterType before anything else in the main.cpp
Then I use "import Test 1.0" in my .qml file, and create a Viewer{ } element...
But, I get "module "Test" is not installed" at runtime...
is there anything I'm missing? I can't think of anything wrong...
Thanks in advance :)