-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Added ability to set input type on android #2361
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added ability to set input type on android #2361
Conversation
Got rid of deprecated compile method
…tream Support for native services
…ing of GPL components if not necessary. Add support for x86 build in ffmmpeg recipe
…_non_gpl_build ffmpeg and ffpyplayer improvements
Since this seems to be where the background service documentation is, I wanted to add how to set them up in buildozer.
Fix master only merges
There is a small typo in doc/source/troubleshooting.rst. Should read `packaged` rather than `pacakged`.
Travis error was: ``` pyenv: pip3.7: command not found ``` Also bumps `actions/setup-python` to latest tag. Hopefully fixes recent `set-env` and `add-path` commands depreciation. The error is: ``` Error: Unable to process command '##[set-env name=pythonLocation;]/opt/hostedtoolcache/Python/3.7.9/x64' successfully. Error: The `set-env` command is disabled. Please upgrade to using Environment Files or opt into unsecure command execution by setting the `ACTIONS_ALLOW_UNSECURE_COMMANDS` environment variable to `true`. For more information see: https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/ ```
🐛 Fixes pip command on Travis and bumps actions/setup-python
fix travis
⬆️ Updates to Kivy2
Audiostream Fix
Add service information for buildozer.spec
support activity_launch_mode in webview bootstrap
Update Pymunk recipe to 6.0.0
support Python 3.9
webview: add mOpenExternalLinksInBrowser field
webview: add enableZoom() method
Seems to be required to link -lm on at least 5.1, but not on 8.0
update sqlite3 to 3.34.0
don't run git pull when not on a branch
Fix Pymunk crash on older versions of Android
update openssl to 1.1.1i
* add scipy support * flake8 * remove ccache check * remove lapack, scipy from ci due to missing gfortran in CI machines * better recipe names, imports
* testing argon2-cffi * Using CompiledComponentsPythonRecipe * argon2-cffi recipe
* pass SOURCE_DATE_EPOCH etc. through to build env * clean tar entries & gzip mtime * utime() files before zipping * sort file lists before tar/zip * call zip w/ -X * make private_version deterministic * python3: add reproducible-buildinfo.diff patch (from Debian) Caveats: * still requires identical build path and umask * arm64-v8a requires ndk >= r22 to build completely reproducibly - due to a clang/llvm bug Makefile Example: NB: you need to export something like this in your build environment to get reproducible builds. export LC_ALL := C export TZ := UTC export SOURCE_DATE_EPOCH := $(shell git log -1 --pretty=%ct) export PYTHONHASHSEED := $(SOURCE_DATE_EPOCH) export BUILD_DATE := $(shell LC_ALL=C TZ=UTC date +'%b %e %Y' -d @$(SOURCE_DATE_EPOCH)) export BUILD_TIME := $(shell LC_ALL=C TZ=UTC date +'%H:%M:%S' -d @$(SOURCE_DATE_EPOCH))
reproducible builds
* fix for armeabi-v7a * move comment to docstring
recipes: print recipe ENV on failure
* try installing setuptools first * use specific pyzmq version tag
…om:dwmoffatt/python-for-android into Added-Ability-To-Change-Input-Type-Android
@AndreMiras I have rebased it. |
Something went wrong with the rebase it seems. It should not show theses commits/diff 🤔 |
Should I just create a new PR for it? This is what happened when I rebased the branch. |
No you don't need to make a new PR. git remote add dwmoffatt [email protected]:dwmoffatt/python-for-android.git
git fetch --all --prune
git rebase upstream/develop # upstream is [email protected]:kivy/python-for-android.git obviously
git push origin Added-Ability-To-Change-Input-Type-Android # you would require the `--force` flag for the overwrite Maybe ping me on Discord so we can try to go through this together |
@AndreMiras it was easier for me to spin a new PR so did that this morning. It's #2405 |
This adds the ability to set input type of keyboard on android.