gpt4 book ai didi

ios - 插件 'PushPlugin' 未找到 Cordova 3.5

转载 作者:行者123 更新时间:2023-11-29 02:53:48 25 4
gpt4 key购买 nike

我正在关注 this在我的 PhoneGap 应用程序中实现推送通知的教程。但是我在 XCode 中不断收到以下错误:

2014-06-03 22:50:38.425 Clubbed In[336:60b] CDVPlugin class PushPlugin (pluginName: PushPlugin) does not exist.
2014-06-03 22:50:38.425 Clubbed In[336:60b] ERROR: Plugin 'PushPlugin' not found, or is not a CDVPlugin. Check your plugin mapping in config.xml.
2014-06-03 22:50:38.427 Clubbed In[336:60b] -[CDVCommandQueue executePending] [Line 158] FAILED pluginJSON = [
"PushPlugin1224815266",
"PushPlugin",
"register",
[
{
"alert" : "true",
"ecb" : "onNotificationAPN",
"sound" : "true",
"badge" : "true"
}
]

我已成功将 4 个委托(delegate)/插件文件放入项目的插件文件夹中。此外,我添加了 PushNotification.js 并正确引用了它。我的 config.xml 中还有以下功能标签:

<feature name="PushPlugin">
<param name="ios-package" value="PushPlugin" />
</feature>

有谁知道我为什么会收到这个错误?我很确定我手动正确安装了这个 PushPlugin。

我应该在插件文件夹中包含一个名为 com.plugin.PushPlugin 的文件夹,然后将 4 个文件放入其中吗?

任何帮助将不胜感激。这个问题困扰我好久了。。。

谢谢!

最佳答案

我遇到了同样的问题,但我只是找到了解决方案。我已将初始化代码替换为:

var pushNotification = PushNotification.init({
"android": {
"senderID": "1234567890"
},
"ios": {"alert": "true", "badge": "true", "sound": "true"},
"windows": {}
});

pushNotification.on('registration', function(data) {
console.log("registration event");
console.log(JSON.stringify(data));
});

pushNotification.on('notification', function(data) {
console.log("notification event");
console.log(JSON.stringify(data));

pushNotification.finish(function () {
console.log('finish successfully called');
});
});

pushNotification.on('error', function(e) {
console.log("push error");
});

PushPlugin not found, or is not a CDVPlugin

关于ios - 插件 'PushPlugin' 未找到 Cordova 3.5,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24161130/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com