Phonegap,Cordova - 插件问题

Lea*_*ver 16 javascript plugins ios cordova

我已经安装了Phonegap(3.0.3)和Cordova CLI.

我也在运行iOS作为平台(确认使用$ cordova platforms ls)

我已经安装了插件($ cordova plugins ls)

org.apache.cordova.core.dialogs
org.apache.cordova.core.vibration
Run Code Online (Sandbox Code Playgroud)

但是,当我运行此控制台命令($ cordova emulate ios)时,我收到以下错误.

Undefined symbols for architecture i386:
  "_AudioServicesAddSystemSoundCompletion", referenced from:
      _playBeep in CDVNotification.o
  "_AudioServicesCreateSystemSoundID", referenced from:
      _playBeep in CDVNotification.o
  "_AudioServicesDisposeSystemSoundID", referenced from:
      _soundCompletionCallback in CDVNotification.o
  "_AudioServicesPlaySystemSound", referenced from:
      _playBeep in CDVNotification.o
      -[CDVVibration vibrate:] in CDVVibration.o
  "_AudioServicesRemoveSystemSoundCompletion", referenced from:
      _soundCompletionCallback in CDVNotification.o
ld: symbol(s) not found for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)


** BUILD FAILED **


The following build commands failed:
    Ld build/MyApp.app/MyApp normal i386
(1 failure)
Run Code Online (Sandbox Code Playgroud)

我已按照API页面中的说明进行操作(http://cordova.apache.org/docs/en/edge/cordova_notification_notification.md.html#Notification),下面是我在文件中的config.xml文件MyApp > www > config.xml导致错误.

<?xml version='1.0' encoding='utf-8'?>
<widget id="com.myapp.myapp" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
    <name>MyApp</name>
    <description>
        A sample Apache Cordova application that responds to the deviceready event.
    </description>
    <author email="dev@callback.apache.org" href="http://cordova.io">
        Apache Cordova Team
    </author>
    <plugin name="Notification" value="CDVNotification" />
    <access origin="*" />
    <preference name="fullscreen" value="true" />
    <preference name="webviewbounce" value="true" />   
</widget>
Run Code Online (Sandbox Code Playgroud)

任何建议可能是什么问题,以及如何解决它?

小智 14

在Xcode项目中添加AudioToolbox框架:

您的目标>构建阶段>链接二进制库

单击"+"按钮

选择AudioToolbox.framework


小智 0

你跑了吗cordova build ios

然后cordova emulate ios

当您在构建阶段未将源添加到编译源时,会发生此错误。尝试添加插件:

TargetSettings -> 构建阶段 -> 编译源 -> 添加你的 .m 类