我在遵循 PhoneGap 的创建自定义 iOS 插件的文档时遇到问题。我不断收到错误
未找到插件“Echo”,或者不是 CDVP 插件。检查 config.xml 中的插件映射
我一直在检查 config.xml,这正是文档所拥有的。我错过了什么吗?
配置文件
<plugins>
<plugin name="Echo" value="Echo" />
</plugins>
索引.html
function hello()
{
var success = function(){ alert('success'); };
var error = function(error){ alert('error ' + error); };
cordova.exec(success, error, "Echo", "echo", ["hey"]);
}