How to increase badge number when application is in background

前端 未结 3 1376
北恋
北恋 2021-02-10 18:59

I am using this code. Every thing is working fine when push notification comes but badge number does not increase when application is in background. How to solve this problem? <

3条回答
  •  深忆病人
    2021-02-10 19:57

    When you send a Push Notification you need add badge value. So you need handle badge for each user device. In php is something like that:

    $body['aps'] = array(
    'alert' => $message,
    'sound' => 'default',
    'badge'=> 10
    );
    

    where 10 thats just the number displayed in the icon.

提交回复
热议问题