Phonegap Build,应用程序图标不出现

Phonegap Build , App icon does not apear

我正在更新我当前的应用程序。 使用本地通知插件让我的应用程序图标显示在通知中时遇到问题。 https://github.com/katzer/cordova-plugin-local-notifications/

我将通知设置为:

    window.plugin.notification.local.schedule({
    id: id,
    ongoing: true,
    autoCancel: false,
    autoClear: false,
    title: "Now Playing:",
    text: title,
    icon: "res://icon.png",
    smallIcon: "res://icon.png",
}); 

我在以下位置有一个 icon.png 文件:

/www
/www/img
/www/res

甚至尝试了没有 res:// 的 icon 和 smallIcon 值,但它似乎不起作用。

我一直收到默认的 android 通知图标,看起来像个铃铛。

谁能帮忙。谢谢你。

也有这个问题。这是由于昨天发生的 Phonegap 构建更新到 cli-6.5.0。我降级到 cli-6.0.0 并且它工作正常。 只需将此添加到您的 config.xml:

<preference name="phonegap-version" value="cli-6.0.0"/>

P.S。也可以与其他版本(例如 6.4.0)一起使用,但自从上述版本有效后就没有尝试过。