我已经安装了 Phonegap (3.0.3) 和 Cordova CLI。
我还将 iOS 作为平台运行(使用确认$ cordova platforms ls
)
我已经安装了插件 ( $ cordova plugins ls
)
org.apache.cordova.core.dialogs
org.apache.cordova.core.vibration
但是,当我运行此控制台命令 ( $ 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)
我已按照此处 API 页面(http://cordova.apache.org/docs/en/edge/cordova_notification_notification.md.html#NotificationMyApp > www > config.xml
)的说明进行操作,下面是导致错误的文件中的 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>
有什么建议可能是什么问题,我该如何解决?