I would like to know how I can use a third party cordova plugin like this?
github.com/EddyVerbruggen/cordova-plugin-taptic-engine
Scirra added it to their build service whitelist but I have no clue how to use it?
Regards;)
I think the best approach is to use the addon SDK to write a plugin that uses the Cordova plugin. You can also set the Construct addon to automatically add the Cordova plugin as a dependency.
Develop games in your browser. Powerful, performant & highly capable.
Okay thanks. Is it also possible to export a cordova project and add the plugin to the xml/json file and then after build it with the construct cloud builder?
Yes, but normally that would do nothing, since usually you'd have to actually make some calls to the plugin for it to do anything.
Yep I tried it with calling the function via javascript with the browser plugin. Doesnt seem to work :(
Ok I got it to work with the way I described. Adding it manually to the json/xml and sign it. Works fine when using the correct functions via Browser.javascript object :) Very cool it worked.
You don't technically need to use the Browser plugin anymore. In the C3 runtime you can add inline Javascript statements, which can use function parameters etc.
Cool I didn't knew that. Thank you for that I'm gonna have a look at it :)