python-for-android
python-for-android copied to clipboard
Turn your Python application into an Android APK
Without this, paths from the build machine will leak into the generated `.pyc` files, which makes the builds more difficult to reproduce. Note that the [`compileall -s` option](https://docs.python.org/3/library/compileall.html#cmdoption-compileall-s) was only...
Can you use the `pycryptodome` recipe for flet BUT for `pycryptodomex`?
### Overview I try to create 'Distance' recipe for my app. I used 'CompiledComponentPythonRecipe' as a reference class. But I couldn't build by below error. ### Versions - Python: 3.10...
Split #3136
Please increase numpy version from 1.26.5 to 2.0.2, because 1.26.5 version is not available
How to test recipe without building whole apk? i just want to check if my custom recipe will build succesfully
Hi there, I try to create own recipe onnxruntime , it requires sympy , so per checking there is sympy in p4a recipes , so i proceed to add sympy...
I'm using python3==3.9.12 and hostpython3==3.9.12 and i'm using Google Colab to Compile the app into apk Crash log is attached Below [INFO]: Building Pillow for arm64-v8a [INFO]: PIL apparently isn't...
Hi ! READ_MEDIA_VISUAL_USER_SELECTED and ACCESS_MEDIA_LOCATION are missing from android.permissions.py, so I added them to my app: `from android.permissions import request_permissions, check_permission, Permission Permission.ACCESS_MEDIA_LOCATION = ("android.permission.ACCESS_MEDIA_LOCATION") Permission.READ_MEDIA_VISUAL_USER_SELECTED = ("android.permission.READ_MEDIA_VISUAL_USER_SELECTED") ` And...
This pull request adds a feature to intercept touch events in the `SDLSurface` class for both the SDL2 and SDL3 bootstraps. It introduces a mechanism to set a custom `OnInterceptTouchListener`,...