有谁知道如何在Java上使用Azure的通知中心添加声音。
我所做的是:
添加了依赖性:
<dependency>
<groupId>com.windowsazure</groupId>
<artifactId>NotificationHubs</artifactId>
<version>0.0.5</version>
</dependency>
并按照文档说明发送通知:
INotificationHub hub = new NotificationHub("connectionString", "hubPath");
Notification n = Notification.createGcmNotification(message);
Set<String> tags = new HashSet<>();
tags.add(tag);
hub.sendNotification(n, tags);
我一直在寻找如何添加声音,但可以找到它。
我打算将通知发送到iOS和Android客户端。
先感谢您。
解决方案如下:
Does anyone know how to add a sound with the notification hub of Azure on java.
不幸的是,Azure通知中心当前不支持该功能。我也找到了类似的
MSDN thread。
您可以将反馈提供给
azure team。
如果您仍然想这样做。我的解决方法是您可以引用
APNS或
GCM。另请注意,播放量限制大小。
推荐人: