Firebase通知行中断

use*_*920 5 notifications android json firebase

我可以知道如何在Firebase Notification正文参数中添加新行或换行符吗?来自电话的通知显示为:

 标题:标题1作者:作者1 

我的期望是:

标题:标题1 
作者:作者1

有什么线索吗?以下是我尝试使用\ n \ n \ n \ r的代码,但它们根本无法工作。

JSONObject body = new JSONObject();
    body.put("body", "Title: Title 1\n"
                        + "Author: Author 1");
Run Code Online (Sandbox Code Playgroud)