EddyVerbruggen / nativescript-local-notifications

:mailbox: NativeScript plugin to easily schedule local notifications
MIT License
162 stars 57 forks source link

Cannot read property \'Builder'\ of undefined #174

Open ghost opened 4 years ago

ghost commented 4 years ago

When i use the notifications schedule like in the example i get the error:

-'Error in LocalNotifications.schedule: TypeError: Cannot read property \'Builder\' of undefined'

Im using the code example of the vue project, what am i doing wrong?

Here is the code:

onTapScheduleNotification() { Notifications.schedule( [{ id: 1, title: 'Would you like a Red Alert poster?', subtitle: 'This poster is awesome!', body: 'The big brown Vue app jumped over the lazy Angular app. The big brown Vue app jumped over the lazy Angular app. The big brown Vue app jumped over the lazy Angular app. The big brown Vue app jumped over the lazy Angular app.', bigTextStyle: false, // Allow more than 1 row of the 'body' text on Android, but setting this to true denies showing the 'image' color: new Color("green"), image: "https://images-na.ssl-images-amazon.com/images/I/61mx-VbrS0L.jpg", thumbnail: "https://2.bp.blogspot.com/-H_SZ3nAmNsI/VrJeARpbuSI/AAAAAAAABfc/szsV7_F609k/s200/emoji.jpg", forceShowWhenInForeground: true, channel: "vue-channel", ticker: "Special ticker text for Vue (Android only)", at: new Date(new Date().getTime() + (5 * 1000)), // 5 seconds from now actions: [ { id: "yes", type: "button", title: "Yes (and launch app)", launch: true }, { id: "no", type: "button", title: "No", launch: false } ] }]) .then(() => { alert({ title: "Notification scheduled", message: "ID: 1", okButtonText: "OK, thanks" }); }) .catch(error => console.log("doSchedule error: " + error)); }

EddyVerbruggen commented 4 years ago

How do you run the app?

eliasihai commented 4 years ago

I Have this issue as well can you help me?

eliasihai@hotmail.com