python-for-android
python-for-android copied to clipboard
Turn your Python application into an Android APK
Recipes with `use_pip = True` will attempt to install via pip by default. Adding `--build-wheels` on the command line will cause p4a to build the wheels and then install rather...
~~This is the third part for the pr #1537 (discussed previously in #1460 and #1534)~~ Here we remove the library loading mechanism because we don't need that, we only need...
Comment the stopSelf(); in onTaskRemoved.
The general aim of this pull request is to make downloads less bad, both in code and in behavior. I did some refactoring and moving around to clean things up,...
This is a new experimental argparse wrapper to have all options on all parsers. This might allow us to get rid of all the littered `hasattr(args, "some_option")` tests or `getattr(args,...
So that you can see the environment variables that go into the apk. It is useful for debugging
Added new bootstrap backend for packaging python service as Android library. Resolves #1957 I'm not familiar with python-for-android codebase, so I tried to keep changes to existing modules to a...
In here we solve a problem we have when changing `android_api` if we already have a build distribution that we can reuse. The problem is that the changes are not...