0

Sorry if this is too obvious but I am trying the following under qpython on Android:

from plyer import notification
notification.notify("something","else")

and I get errors which end with:

NotImplementedError: No usable implementation found!

What am I missing?

Cid-El
  • 500
  • 7
  • 30
ihf
  • 51
  • 1
  • 9

1 Answers1

0

notify must be passed several arguments, here is a example of how to use it:

from plyer import notification

notification.notify(title="Kivy Notification",message="Plyer Up and Running!",app_name="Waentjies",app_icon="icon.png",timeout=10)

hope this helped

Cid-El
  • 500
  • 7
  • 30