用插件包装Cordova Hook?

时间:2014-08-25 18:10:24

标签: cordova cordova-plugins

我想将一些before_build逻辑打包为我的插件的钩子。是否可能,如果可能,怎么样?

1 个答案:

答案 0 :(得分:1)

是。来自http://cordova.apache.org/docs/en/edge/guide_appdev_hooks_index.md.html

作为插件开发人员,您可以使用plugin.xml中的元素来定义钩子脚本:

<hook type="before_plugin_install" src="scripts/beforeInstall.js" />
<hook type="after_build" src="scripts/afterBuild.js" />

<platform name="wp8">
    <hook type="before_plugin_install" src="scripts/wp8BeforeInstall.js" />
    <hook type="before_build" src="scripts/wp8BeforeBuild.js" />
    ...
</platform>