I\'m building a Cordova Android plugin. I want to use a 3rd party View
inside an Intent
that is created by the plugin
You have to use your own gradle file then link it on the plugin.xml
like this
You have to put that tag on the plugin.xml
, so on plugin install it's read and cordova handles it (not sure how it works internally, but I suppose that it copies the values from your custom .gradle to the main build.gradle).
So you can't test it on your current project, you have to create a new project and add the plugin and see if it works