HarmonyOS 申请长时任务报错9800006 -

BussinessError 9800006: Notification verification failed for a continuous task. The title or text of the notification cannot be empty.

参考demo里的写法,申请长时任务报错,调用的startBackgroundRunning方法,是什么原因?

HarmonyOS
2天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
zxjiu

module.json5中skills配置中如果有uris,需要单独用{}包起来

"skills": [
{
  "entities": [
  "entity.system.home"
  ],
  "actions": [
  "action.system.home"
  ],
  //            "uris": [
  //              {
  //                "scheme": "talk",
  //                "host": "talkclient"
  //              }
  //            ]
},
{
  "uris": [
  {
    "scheme": "talk",
  "host": "talkclient"
  }
  ]
}
],
分享
微博
QQ
微信
回复
2天前
相关问题
如何申请多个时任务
2132浏览 • 1回复 待解决
HarmonyOS 时任务启动失败9800005
37浏览 • 1回复 待解决
时任务是否阻止系统休眠
482浏览 • 1回复 待解决
HarmonyOS 音视频时任务使用
236浏览 • 1回复 待解决
时任务后台运行,保证应用不被挂起
1190浏览 • 1回复 待解决
音视频播放是否需要创建时任务
2047浏览 • 1回复 待解决
如何实现短时任务申请和回调?
508浏览 • 1回复 待解决