mp-007

Results 11 comments of mp-007

If you recreate the MDDropdownMenu on add_item, it should work. ``` def add_item(self): self.item_count += 1 new_item = {'text': f'Item{self.item_count}'} menu_items = [item for item in chain(self.menu.items, [new_item])] self.menu =...

If someone can test if this bug persist with the new kivy master version (2.2.0), it will be appreciated. I did a PR (https://github.com/kivy/kivy/pull/8043) to update the SDL version to...

Update: p4a need to be also updated. I have asked an update in this pull request https://github.com/kivy/python-for-android/pull/2692 to include all bug fix with the open gl 2, but we need...

can you used ``` font_size: sp(280) if app.root_window.height < dp(670) else sp(295) ``` instead of ``` font_size: sp(280) if Window.size[1] < dp(670) else sp(295) ```

using this doesn't fix your problem? ``` if getattr(sys, 'frozen', False): import ssl if ssl.get_default_verify_paths().cafile is None: os.environ['SSL_CERT_FILE'] = os.path.join(sys._MEIPASS, 'certifi', 'cacert.pem') ```

@sanderland I have took the information here https://github.com/pyinstaller/pyinstaller/issues/6575 Maybe there's no AND in the condition. I have modified my post.

@sanderland. Do you know if my fix it's working? Here's an other post about this issue: https://github.com/pyinstaller/pyinstaller/wiki/Recipe-OpenSSL-Certificate

Use NDK 19c in your buildozer.spec (Download link: https://developer.android.com/ndk/downloads/older_releases). Unzip the file in /home/****/.buildozer/android/platform (**** is your user name in Ubuntu).

Can you check if added this line change something (top of main.py) ``` from kivy.config import Config Config.set('input', 'mtdev_%(name)s', 'probesysfs,provider=mtdev') ```

for long term solution I think that https://github.com/kivy/kivy/pull/8056 will be a better solution, but it can be good to test the new commit https://github.com/kivy/python-for-android/commit/e14bdfc92f8fd369b21b4f3a8dfd601ea1a3f90d merged into develop branch. It's included...