如何将git中的插件包含到phonegap构建zip文件的构建中? config.xml文件中的插件规范是
<plugin name="com.ourcodeworld.plugins.Filebrowser" spec="~1.0.0"
src="https://github.com/ourcodeworld/cordova-ourcodeworld-filebrowser.git" />
该项目通常在Android上作为Cordova应用程序运行。在PhoneGap Build中,我收到一条错误消息。 具体错误是:
Error - The following plugin, plugin version or a dependancy of this plugin is not on npm:
com.ourcodeworld.plugins.Filebrowser@~1.0.0
我错过了什么?
答案 0 :(得分:0)
您需要使用git插件网址填写“spec”:
<plugin name="com.ourcodeworld.plugins.Filebrowser"
spec="https://github.com/ourcodeworld/cordova-ourcodeworld-filebrowser.git" />
不需要“src”。 Visual Studio Cordova需要“名称”。 PhoneGap Build将从git中提取插件。文档在这里:
http://docs.phonegap.com/phonegap-build/configuring/plugins/#plugin-source