1

我正在使用 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模拟器上尝试。谢谢。

4

1 回答 1

1

我们面临同样的问题,但在我们添加所需的行之前config.xml因此,此链接中还提到了以下两步过程,链接解决了该问题。

  1. 在命令行上

$cordova 插件添加 https://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs.git

  1. 在项目的 config.xml
<feature name="Notification">
    <param name="ios-package" value="CDVNotification" />
</feature>
于 2014-09-24T14:15:57.397 回答