RobertF
RobertF
It is possible to instantiate a Webview without using Plyer, for example: https://github.com/RobertFlatt/Android-for-Python/tree/main/webview Android only. I know nothing about Chrome tabs.
Plyer is not well supported, I don't think filechooser works on newer Android versions. The Plyer code is here https://github.com/kivy/plyer/blob/master/plyer/platforms/android/filechooser.py On newer Android versions shared storage is not a file...
What is the hold up with https://github.com/kivy/python-for-android/pull/1922 (17 months since created) or https://github.com/kivy/python-for-android/pull/2200 (7 months since created) ? p4a is 3 years behind Google in supporting Android features that depend...
Really **not** a good idea to integrate run time permissions into Plyer, it will result in unexpected behavior. There can only be **one call** to `request_permissions()` and it *must* be...
`request_permissions()` generates Android pause/resume events. Called during Kivy `build()` this is not an issue. Called during Kivy `on_start()` the pause occurs during `on_start` (not an issue) but a Kivy `on_resume()`...
1) If my understanding of the proposed change is correct if the user first accesses a Plyer module in on_start() the Kivy lifecycle is broken. 2) I tried the following...
I have a different preconception about what is the "right thing". But I'm not writing the code, so it matters little.
I occurred to me that if this is the case: `06-14 13:14:03.753 27698 27739 W Activity: Can request only one set of permissions at a time` Then there may be...
The issue occurs because the internal list of custom recipes `ctx.custom_recipes_paths` does not persist between `toolchain build` occurrences. The workaround is to build both custom recipes with the same `toolchain...
For the same reason `toolchain status` does not list custom recipes. The missing functionality could be implemented with a .db mapping built custom recipes to their directory.