녹스에선 푸시알림 뜨는데 내 폰에선 안뜸 (갤럭시s10e)


    void Start()

    {

        AndroidNotificationCenter.CancelAllScheduledNotifications();


        // 매일 오전 10시에 푸시알림을 예약합니다.

        var notification = new AndroidNotification();

        notification.Title = "안녕하세요";

        notification.Text = "오늘 하루도 화이팅하세요!";

        notification.FireTime = System.DateTime.Now.Date.AddHours(10).AddMinutes(26);

        //System.DateTime.Now.AddDays(1).Date.AddHours(10).AddMinutes(26);


        var identifier = AndroidNotificationCenter.SendNotification(notification, "channel_idd");

    }