I tried this tutorial to integrate MQA on my mobilefirst hybrid app:
https://mobilefirstplatform.ibmcloud.com/tutorials/en/quality-assurance/7.1/hybrid/
On iOS I can see this in my logs:
ERROR: Plugin 'MQAPlugin' not found, or is not a CDVPlugin. Check your plugin mapping in config.xml.
I already added this on my config.xml also:
<feature name="MQAPlugin">
<param name="ios-package" value="MQAPlugin"/>
</feature>
Nothing is happening on my app, on android nothing is happening also I followed everything on that tutorial.
So I tried adding these codes on my App delegate for iOS and MQA was working, since the things that I've done for hybrid iOS is also applicable for native iOS, I just need to add these lines in my app delegate:
[[MQALogger settings] setMode:MQAModeQA];
[MQALogger startNewSessionWithApplicationKey:@"(my_ios_key)"];
Back to the error, why is it looking for a plugin? since I already added the Q4M.framework. For android also its looking for a plugin. What plug-in do I need to install? I need to make it work on my hybrid android project.