- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
{
"to": "XXXX",
"notification": {
"title": "ASAP Alert",
"body": "Please open your app"
},
"data": {
"screen": "/Nexpage1",
"sound": "alarm",
"click_action": "FLUTTER_NOTIFICATION_CLICK"
}
}
以上是我的推送通知负载。我已经在原始文件夹中插入了 alarm.mp3 文件,但是它仍然没有给我警报声,我也尝试了 alarm.mp3,json 有什么问题吗?是因为我的 dart 文件中的代码吗?
最佳答案
阅读 this它似乎应该在 Android 上自动管理(如果你没有使用 notification builder )但你必须指定 .mp3
扩展名并将其放入 notification
字段而不是 data
一个..
"sound": "alarm.mp3"
iOS
在后台的行为非常不同,但您也可以通过在通知负载中设置 sound:
字段来使用自定义声音。总之 .mp3
不是有效的 APN 通知文件格式,您还需要指定文件扩展名。
"sound": "filename.caf"
关注Apple documentation以便为您的应用伪造自定义声音文件。
mp3 不是有效格式
Preparing Custom Alert Sounds
Local and remote notifications can specify custom alert sounds to beplayed when the notification is delivered. You can package the audiodata in an aiff, wav, or caf file. Because they are played by thesystem-sound facility, custom sounds must be in one of the followingaudio data formats:
Linear PCM
MA4 (IMA/ADPCM)
µLaw
aLaw
Place custom sound files in your
app bundle
or in theLibrary/Sounds
folder of your app’s container directory. Customsounds must be under 30 seconds when played. If a custom sound isover that limit, the default system sound is played instead.You can use the
afconvert
tool to convert sounds. For example, toconvert the 16-bit linear PCM system soundSubmarine.aiff
toIMA4
audio in aCAF file
, use the following command in the Terminal app:afconvert /System/Library/Sounds/Submarine.aiff ~/Desktop/sub.caf -d ima4 -f caff -v
例如,要将您的 mp3
文件转换为 caf
文件,您可以在终端中键入:
afconvert -f caff -d LEI16 alarm.mp3 alarm.caf
阅读此 doc为了深入了解所有通用和特定的通知有效负载字段。
更新
我已经测试了 Android 部分,我可以确认将您的 .mp3
文件放在 res/raw/
文件夹中,声音会按照记录和预期播放。
这是我的通知负载:
{
"to" : "my_device_token",
"collapse_key" : "type_a",
"priority" : "high",
"notification" : {
"body" : "Test Notification body for custom sound {{datestamp}}",
"title": "Custom sound alert.mp3",
"sound": "alert.mp3"
}
}
在以这种方式将 .mp3
文件转换为 .caf
文件后,我还测试了 iOS 版本:
afconvert -f caff -d LEI16 alert.mp3 alert.caf
具有不同文件名的相同 json
负载有效:
{
"to" : "my_device_token",
"collapse_key" : "type_a",
"priority" : "high",
"notification" : {
"body" : "Test Notification body for custom sound {{datestamp}}",
"title": "Custom sound alert.mp3",
"sound": "alert.caf"
}
}
请记住将文件添加到您的主包
中。
如果应用程序终止或在后台运行,这会起作用。
如果你想在应用程序处于前台时显示警报并播放声音,你必须在 onMessage
事件上对其进行管理,就像有人已经告诉你的那样 here ,或者您可以使用 platform-channel在这里使用 Notification.Builder 构建您自己的通知在 Android 和 UNNotificationCenter在 iOS 上(例如)。
更新
这个问题已经解决了。参见 here官方评论:
Hey all 👋
As part of our roadmap (#2582) we've just shipped a complete rework ofthe firebase_messaging plugin that aims to solve this and many otherissues.
If you can, please try out the dev release (see the migration guidefor upgrading and for changes) and if you have any feedback then joinin the discussion here.
Given the scope of the rework I'm going to go ahead and close thisissue in favor of trying out the latest plugin.
Thanks everyone 🤓
关于push-notification - 自定义声音推送通知不起作用(Flutter),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54002617/
我正在尝试将多个值放入数组中。 当我使用时: csvData.push('data[0][index],data[1][index],data[2][index],data[3][index]');
我想在数组声明中直接使用函数 push(),但它不能正常工作。在我的示例中,我的数组返回值 2 : var j = ["b"].push("a"); document.write(j); // ret
我编写了以下Powershell,它为所选文件夹中的所有驱动程序创建了一个bat安装程序,然后应重新启动PC。 New-Item C:\Tools\Drivers\DellLatitude3450.b
例: $ git clone git@gitlab:carlos/test.git Cloning into 'asd'... ssh: connect to host gitlab port 22:
我正在构建一个具有数组类型属性的对象数组: 这里是一些简化的代码: var _data = []; for(var i=0;i<10;i++) { var element = {
我有一个简单的 PHP/MySql 应用程序,它通常会选择几个数据库之一(假设每个客户一个)进行操作。但是,经常调用访问公共(public)数据库的实用程序函数。 我不想在我的代码中散布 USE 子句
我在推送 View Controller 时遇到问题。这就是我所做的:单击一个按钮,我使用这段代码添加了一个模态视图,我工作正常: - (void)addAction:(id)sender {
我想为socket can写一个android系统服务器。我目前正在设计这个,想知道是否有任何方法可以在 Linux/POSIX 套接字上的数据是否可用而无需调用 read() 并随时轮询结果的情况下
我正在编写一个 Bootstrap 站点,我想知道这是否可以接受。该网站看起来像我想要的那样,但我想知道这是否是最佳做法? 我采用的方法是对每两个缺失的列使用 1 个偏
删除远程分支是通过: git push origin :master 如果本地在远程之后,则需要完成: git push --force origin :master 但是强制删除例如master 基
假设我有一个 git 服务器。在每次推送时,我都需要启动一个进程,我可以通过一个钩子(Hook)来完成。 需要将进程的标准输出写入执行推送的 git 客户端。这与 Heroku 或 Openshift
我刚刚开始学习 Git,有些事情我无法解决。在我的 Mac 上本地创建和使用 git 存储库后,我可以将副本推送到其他地方的另一台服务器吗?我在防火墙后面,所以不幸的是我无法从另一台机器运行 git
这个问题在这里已经有了答案: warning: remote HEAD refers to nonexistent ref, unable to checkout (13 个答案) 关闭 7 年前。
我已经安装了 SCM Sync 配置插件(0.0.10)来将我的 jenkins 设置保存在我的 git 存储库中。 我已经设置了 git url 存储库但插件没有提交/推送,请看截图 我试过: 私钥
这可能看起来很矛盾,我知道 secret 变更集是私有(private)的,但是如果我想备份这些 secret 变更集怎么办? 我与一些分支并行工作,有时我想插入一个,而不是其他的。为了实现这一点,我
我正在使用 TortoiseHg用于版本控制。提交到本地后,我推送到远程存储库。如何撤消到特定的提交点? 有三个不同的插入,我想恢复到第一个插入。我读到了 Mercurial 回滚和 hg 撤销 命令
我知道以前有人问过这个问题,但我似乎无法理解这件事...... git checkout master git pull git git checkout feature git rebase ori
下面的代码片段中 return { Push:function ..... 的含义是什么?当我用谷歌搜索时,我发现push()方法将新项目添加到数组的末尾,并返回新的长度。所以我不确定什么是push:
我正在使用 Mercurial 1.6。我有一个带有几个子存储库的存储库 (11)。我想将父存储库推送到默认远程存储库,而不推送子存储库。想要这样做的原因包括: 我使用的是 SSH 存储库,需要很长时
我分配了一个按钮来将 segue 推送到另一个 View Controller ,但是当我执行这部分代码时,我得到以下信息: 2014-02-20 10:44:29.357 nar[20244:70b
我是一名优秀的程序员,十分优秀!