python-for-android
python-for-android copied to clipboard
Turn your Python application into an Android APK
Many of the tools run by p4a store intermediate files in the user's home directory. Passing the HOME environment variable to the build environment has 2 positive effects: 1. To...
- Adds support for Python 3.10 in `hostpython3` and `python3` recipes. - Makes Python 3.10 the default version.
I've created a very simple Test App app to test my changes. ### Test App #### main.py ```python iimport pkg_resources import platform from kivy.app import App from kivy.uix.anchorlayout import AnchorLayout...
This PR should make it possible to add [content providers](https://developer.android.com/guide/topics/manifest/provider-element) to the Android manifest. Two options are added to the common `build.py` script: - `--content-providers` is practically identical to the...
P4a kept rebuilding the entire android distribution for my project when i did "buildozer android deploy", I tracked down the bug to a simple case sensitivity mismatch here: https://github.com/kivy/python-for-android/blob/develop/pythonforandroid/distribution.py#L119 I...
Hi everyone, I continue the issue described here: https://github.com/kivy/python-for-android/issues/1052 . The idea is to create a gRPC recipe for p4a. I tried to fork the existing recipe, https://github.com/hpsaturn/p4a_grpc_recipe/blob/master/__init__.py. The recipe...
**Software Versions** * Python: 3.8 * OS: * Kivy: 1.11.1 * Kivy installation method: **Describe the bug** Bug when running the buildozer android debug command **Expected behavior** It would be...
### Checklist - [ ] the issue is indeed a bug and not a support request - [ ] issue doesn't already exist: https://github.com/kivy/python-for-android/issues - [ ] I have a...
Installing collected packages: datetime, pyaudio Created temporary directory: /tmp/pip-unpacked-wheel-3_f9u5yj Created temporary directory: /tmp/pip-record-lb4mbhn3 Running command /home/ali/Desktop/22/.buildozer/android/platform/build-armeabi-v7a/build/venv/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-qhh5mpkq/pyaudio/setup.py'"'"'; __file__='"'"'/tmp/pip-install-qhh5mpkq/pyaudio/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__,...
Hello everyone! I just want to make fullscreen presplash screen. You can see statusbar and navigation bar with black colors and it would be nice if it was possible to...