我正在使用 phonegap 3.0.0 开发一个应用程序。我需要显示确认对话框,因此我使用以下命令从 phonegap CLI 添加了通知插件(如CLI 文档中所述):
$ phonegap local plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs.git
但现在我无法构建项目。当我尝试构建它失败并出现以下错误:
** BUILD FAILED **
The following build commands failed:
CompileC build/CamTest.build/Debug-iphonesimulator/CamTest.build/Objects-normal/i386/CDVNotification.o CamTest/Plugins/org.apache.cordova.dialogs/CDVNotification.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler
当我删除通知插件时,一切正常。我还尝试在我的 config.xml (CamTest/www/config.xml) 中添加以下内容,但没有效果:
<feature name="Notification">
<param name="ios-package" value="CDVNotification" />
</feature>
请有人告诉我如何使用 Phonegap 3.0.0 中的插件。我正在iphone模拟器上尝试。谢谢。