我使用 Java pns 来推送我的应用程序,这就是我使用它的方式:
public static PushedNotifications Push(String token,String message,String Sound,int badge) throws CommunicationException, KeystoreException{
String key=PushUtil.class.getResource("cert.p12").getPath();
PushedNotifications pn= Push.combined(message, badge, Sound, key, "Pass", true, token);
System.out.println("pn: "+pn);
return pn;
}
有没有办法发送通知以增加徽章而不是仅仅设置它?