Local notificação com scheduler no ionic 4 não funciona no sdk 28+ quando usa o trigger

0

Funciona

 this.localNotifications.schedule({
      id: 1,
      summary: "Amanhã  3444" ,
      text: 'teste local notification ',
      smallIcon: "res://icone_in",

      title: "aaaa 3",

      led: 'FF0000',
      sound: null
   });

não funciona

 this.localNotifications.schedule({
      id: 1,
      summary: "Amanhã  3444" ,
      text: 'teste local notification ',
      smallIcon: "res://icone_in",

      title: "aaaa 3",
      trigger: {at: new Date(new Date().getTime() + 10000)},
      led: 'FF0000',
      sound: null
   });

estou usando

 import { LocalNotifications } from '@ionic-native/local-notifications/';

se usar o trigger sem adicionar tempo funciona tb não sei que fazer obrigado