plyer
plyer copied to clipboard
Plyer is a platform-independent Python wrapper for platform-dependent APIs
- OS: Ubuntu 18.04 - GUI: Kivy==2.2.0 - Python: 3.8.16 `plyer.filechooser.open_file()` opens up a window inside `Kivy` GUI, which does not respond for any mouse events. While opening the file...
On my Macbook Pro (Catalina 10.15.4), when 4 finger swiping to an adjacent window after the filechooser had been opened at one point, the filechooser opens again and will not...
I have idea for create brightness.py for ``macOS``.
It seems plyer notification module works finally out of the box on Android. However I'm having a hard time getting push notifications to work inside my `service.py `script which runs...
- 114 line never execute, _set_icons(self, notification, icon=None) https://github.com/kivy/plyer/blob/924e406043768d3e8696b90778dc1ac16d6e1081/plyer/platforms/android/notification.py - may be ``` elif icon is None: ```
[setup.py](https://github.com/kivy/plyer/blob/master/setup.py) provides `extra_requires` packages for ios, macosx, android and dev. However, the documentation doesn't mention these. We have had many issues raised by people not realising they don't have the...
Hi, uniqueid.uuid is generating this error on iPhone (not in Simulator: ``` File "/.../site-packages/plyer/platforms/ios/uniqueid.py", line 19, in _get_uid uuid = UIDevice.currentDevice().identifierForVendor.UUIDString() TypeError: 'Swift.__StringStorage' object is not callable ``` I've seen...
The supplied buildozer.spec file works with python 2.7 but not with python 3. I have built it on ubuntu 16.04. In order to make it work with python 3, the...
Hello, I think there is some error in sms example ( https://github.com/kivy/plyer/tree/master/examples/sms ). Your should use `smstext = unicode(self.sms_message.strip(codecs.BOM_UTF8), 'utf-8') sms.send(recipient=self.sms_recipient, message=smstext)` instead of ` sms.send(recipient=self.sms_recipient, message=self.sms_message) ` For some...
I'm new to Plyer and Kivy and have started with the GPS example code in Plyer here. Getting things to run on the phone is no problem and other examples...