Skip to content
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

Error en la compílación de py a apk #1792

Closed
etzelmm opened this issue Mar 23, 2024 · 2 comments
Closed

Error en la compílación de py a apk #1792

etzelmm opened this issue Mar 23, 2024 · 2 comments

Comments

@etzelmm
Copy link

etzelmm commented Mar 23, 2024

Llevo bastante intentando resolverlo. La ultima posible correción fue : apt-get install libffi-dev, pero al volver a intentar sigue apareciendo este:

Ensure build layout

Check configuration tokens

Preparing build

Check requirements for android

Search for Git (git)

-> found at /usr/bin/git

Search for Cython (cython)

-> found at /root/.local/bin/cython

Search for Java compiler (javac)

-> found at /usr/lib/jvm/java-17-openjdk-amd64/bin/javac

Search for Java keytool (keytool)

-> found at /usr/lib/jvm/java-17-openjdk-amd64/bin/keytool

Install platform

Run ['git', 'config', '--get', 'remote.origin.url']

Cwd /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android

https://github.com/kivy/python-for-android.git

Run ['git', 'branch', '-vv']

Cwd /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android

  • master 957a3e5f [origin/master] Merge pull request #2959 from kivy/release-2024.01.21

Run ['/usr/bin/python3', '-m', 'pip', 'install', '-q', '--user', 'appdirs', 'colorama>=0.3.3', 'jinja2', 'sh>=1.10, <2.0; sys_platform!="win32"', 'build', 'toml', 'packaging', 'setuptools']

Cwd None

WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv

Apache ANT found at /root/.buildozer/android/platform/apache-ant-1.9.4

Android SDK found at /root/.buildozer/android/platform/android-sdk

Recommended android's NDK version by p4a is: 25b

Android NDK found at /root/.buildozer/android/platform/android-ndk-r25b

Run ['/usr/bin/python3', '-m', 'pythonforandroid.toolchain', 'aab', '-h', '--color=always', '--storage-dir=/mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a', '--ndk-api=21', '--ignore-setup-py', '--debug']

Cwd /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android

[WARNING]: prerequisites.py is experimental and does not support all prerequisites yet.
[WARNING]: Please report any issues to the python-for-android issue tracker.
[WARNING]: prerequisites.py is experimental and does not support all prerequisites yet.
[WARNING]: Please report any issues to the python-for-android issue tracker.
usage: toolchain.py aab [-h] [--debug] [--color {always,never,auto}]
[--sdk-dir SDK_DIR] [--ndk-dir NDK_DIR]
[--android-api ANDROID_API]
[--ndk-version NDK_VERSION] [--ndk-api NDK_API]
[--symlink-bootstrap-files]
[--storage-dir STORAGE_DIR] [--arch ARCH]
[--dist-name DIST_NAME] [--requirements REQUIREMENTS]
[--recipe-blacklist RECIPE_BLACKLIST]
[--blacklist-requirements BLACKLIST_REQUIREMENTS]
[--bootstrap BOOTSTRAP] [--hook HOOK] [--force-build]
[--no-force-build] [--require-perfect-match]
[--no-require-perfect-match] [--allow-replace-dist]
[--no-allow-replace-dist]
[--local-recipes LOCAL_RECIPES]
[--activity-class-name ACTIVITY_CLASS_NAME]
[--service-class-name SERVICE_CLASS_NAME]
[--java-build-tool {auto,ant,gradle}] [--copy-libs]
[--no-copy-libs] [--add-asset ASSETS]
[--add-resource RESOURCES] [--private PRIVATE]
[--use-setup-py] [--ignore-setup-py] [--release]
[--with-debug-symbols] [--keystore KEYSTORE]
[--signkey SIGNKEY] [--keystorepw KEYSTOREPW]
[--signkeypw SIGNKEYPW]

options:
-h, --help show this help message and exit
--debug Display debug output and all build info
--color {always,never,auto}
Enable or disable color output (default enabled on
tty)
--sdk-dir SDK_DIR, --sdk_dir SDK_DIR
The filepath where the Android SDK is installed
--ndk-dir NDK_DIR, --ndk_dir NDK_DIR
The filepath where the Android NDK is installed
--android-api ANDROID_API, --android_api ANDROID_API
The Android API level to build against defaults to 33
if not specified.
--ndk-version NDK_VERSION, --ndk_version NDK_VERSION
DEPRECATED: the NDK version is now found automatically
or not at all.
--ndk-api NDK_API The Android API level to compile against. This should
be your minimal supported API, not normally the same
as your --android-api. Defaults to min(ANDROID_API,
21) if not specified.
--symlink-bootstrap-files, --ssymlink_bootstrap_files
If True, symlinks the bootstrap files creation. This
is useful for development only, it could also cause
weird problems.
--storage-dir STORAGE_DIR
Primary storage directory for downloads and builds
(default: /root/.local/share/python-for-android)
--arch ARCH The archs to build for.
--dist-name DIST_NAME, --dist_name DIST_NAME
The name of the distribution to use or create
--requirements REQUIREMENTS
Dependencies of your app, should be recipe names or
Python modules. NOT NECESSARY if you are using Python
3 with --use-setup-py
--recipe-blacklist RECIPE_BLACKLIST
Blacklist an internal recipe from use. Allows
disabling Python 3 core modules to save size
--blacklist-requirements BLACKLIST_REQUIREMENTS
Blacklist an internal recipe from use. Allows
disabling Python 3 core modules to save size
--bootstrap BOOTSTRAP
The bootstrap to build with. Leave unset to choose
automatically.
--hook HOOK Filename to a module that contains python-for-android
hooks
--local-recipes LOCAL_RECIPES, --local_recipes LOCAL_RECIPES
Directory to look for local recipes
--activity-class-name ACTIVITY_CLASS_NAME
The full java class name of the main activity
--service-class-name SERVICE_CLASS_NAME
Full java package name of the PythonService class
--java-build-tool {auto,ant,gradle}
The java build tool to use when packaging the APK,
defaults to automatically selecting an appropriate
tool.
--add-asset ASSETS Put this in the assets folder in the apk.
--add-resource RESOURCES
Put this in the res folder in the apk.
--private PRIVATE the directory with the app source code files
(containing your main.py entrypoint)
--use-setup-py Process the setup.py of a project if present.
(Experimental!
--ignore-setup-py Don't run the setup.py of a project if present. This
may be required if the setup.py is not designed to
work inside p4a (e.g. by installing dependencies that
won't work or aren't desired on Android
--release Build your app as a non-debug release build. (Disables
gdb debugging among other things)
--with-debug-symbols Will keep debug symbols from .so files.
--keystore KEYSTORE Keystore for JAR signing key, will use jarsigner
default if not specified (release build only)
--signkey SIGNKEY Key alias to sign PARSER_APK. with (release build
only)
--keystorepw KEYSTOREPW
Password for keystore
--signkeypw SIGNKEYPW
Password for key alias

Whether to force compilation of a new distribution

--force-build
--no-force-build (this is the default)
--require-perfect-match
--no-require-perfect-match
(this is the default)
--allow-replace-dist (this is the default)
--no-allow-replace-dist
--copy-libs
--no-copy-libs (this is the default)

Check application requirements

Compile platform

Run ['/usr/bin/python3', '-m', 'pythonforandroid.toolchain', 'create', '--dist_name=Boton gm', '--bootstrap=sdl2', '--requirements=python3,kivy', '--arch=arm64-v8a', '--arch=armeabi-v7a', '--copy-libs', '--color=always', '--storage-dir=/mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a', '--ndk-api=21', '--ignore-setup-py', '--debug']

Cwd /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android

[WARNING]: prerequisites.py is experimental and does not support all prerequisites yet.
[WARNING]: Please report any issues to the python-for-android issue tracker.
[WARNING]: prerequisites.py is experimental and does not support all prerequisites yet.
[WARNING]: Please report any issues to the python-for-android issue tracker.
[INFO]: Will compile for the following archs: arm64-v8a, armeabi-v7a
[INFO]: Found Android API target in $ANDROIDAPI: 31
[INFO]: Available Android APIs are (31)
[INFO]: Requested API target 31 is available, continuing.
[INFO]: Found NDK dir in $ANDROIDNDK: /root/.buildozer/android/platform/android-ndk-r25b
[INFO]: Found NDK version 25b
[INFO]: Getting NDK API version (i.e. minimum supported API) from user argument
[INFO]: ccache is missing, the build will not be optimized in the future.
[DEBUG]: All possible dists: []
[DEBUG]: Dist matching name and arch: []
[DEBUG]: Dist matching ndk_api and recipe: []
[INFO]: No existing dists meet the given requirements!
[DEBUG]: Remove directory and subdirectory /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/dists/Boton gm
[INFO]: No dist exists that meets your requirements, so one will be built.
[INFO]: Found a single valid recipe set: ['hostpython3', 'libffi', 'openssl', 'sdl2_image', 'sdl2_mixer', 'sdl2_ttf', 'sqlite3', 'python3', 'sdl2', 'setuptools', 'six', 'pyjnius', 'android', 'kivy']
[INFO]: The selected bootstrap is sdl2
[INFO]: # Creating dist with sdl2 bootstrap
[INFO]: Dist will have name Boton gm and requirements (python3, kivy)
[INFO]: Dist contains the following requirements as recipes: ['hostpython3', 'libffi', 'openssl', 'sdl2_image', 'sdl2_mixer', 'sdl2_ttf', 'sqlite3', 'python3', 'sdl2', 'setuptools', 'six', 'pyjnius', 'android', 'kivy']
[INFO]: Dist will also contain modules (certifi, requests, urllib3, idna, chardet) installed from pip
[INFO]: Dist will be build in mode debug
[INFO]: -> directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/bootstrap_builds/sdl2
[INFO]: <- directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android
[DEBUG]: Create directory /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/dists/Boton gm
[INFO]: Recipe build order is ['hostpython3', 'libffi', 'openssl', 'sdl2_image', 'sdl2_mixer', 'sdl2_ttf', 'sqlite3', 'python3', 'sdl2', 'setuptools', 'six', 'pyjnius', 'android', 'kivy']
[INFO]: The requirements (certifi, chardet, idna, requests, urllib3) were not found as recipes, they will be installed with pip.
[INFO]: # Downloading recipes
[INFO]: Downloading hostpython3
[INFO]: -> directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/packages/hostpython3
[DEBUG]: -> running basename https://www.python.org/ftp/python/3.11.5/Python-3.11.5.tgz
[DEBUG]: Python-3.11.5.tgz
[INFO]: hostpython3 download already cached, skipping
[INFO]: <- directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android
[INFO]: Downloading libffi
[INFO]: -> directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/packages/libffi
[DEBUG]: -> running basename https://github.com/libffi/libffi/archive/v3.4.2.tar.gz
[DEBUG]: v3.4.2.tar.gz
[INFO]: libffi download already cached, skipping
[INFO]: <- directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android
[INFO]: Downloading openssl
[INFO]: -> directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/packages/openssl
[DEBUG]: -> running basename https://www.openssl.org/source/openssl-1.1.1w.tar.gz
[DEBUG]: openssl-1.1.1w.tar.gz
[INFO]: openssl download already cached, skipping
[INFO]: <- directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android
[INFO]: Downloading sdl2_image
[INFO]: -> directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/packages/sdl2_image
[DEBUG]: -> running basename https://github.com/libsdl-org/SDL_image/releases/download/release-2.8.0/SDL2_image-2.8.0.tar.gz
[DEBUG]: SDL2_image-2.8.0.tar.gz
[INFO]: sdl2_image download already cached, skipping
[INFO]: <- directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android
[INFO]: Downloading sdl2_mixer
[INFO]: -> directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/packages/sdl2_mixer
[DEBUG]: -> running basename https://github.com/libsdl-org/SDL_mixer/releases/download/release-2.6.3/SDL2_mixer-2.6.3.tar.gz
[DEBUG]: SDL2_mixer-2.6.3.tar.gz
[INFO]: sdl2_mixer download already cached, skipping
[INFO]: <- directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android
[INFO]: Downloading sdl2_ttf
[INFO]: -> directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/packages/sdl2_ttf
[DEBUG]: -> running basename https://github.com/libsdl-org/SDL_ttf/releases/download/release-2.20.2/SDL2_ttf-2.20.2.tar.gz
[DEBUG]: SDL2_ttf-2.20.2.tar.gz
[INFO]: sdl2_ttf download already cached, skipping
[INFO]: <- directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android
[INFO]: Downloading sqlite3
[INFO]: -> directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/packages/sqlite3
[DEBUG]: -> running basename https://www.sqlite.org/2021/sqlite-amalgamation-3350500.zip
[DEBUG]: sqlite-amalgamation-3350500.zip
[INFO]: sqlite3 download already cached, skipping
[INFO]: <- directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android
[INFO]: Downloading python3
[INFO]: -> directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/packages/python3
[DEBUG]: -> running basename https://www.python.org/ftp/python/3.11.5/Python-3.11.5.tgz
[DEBUG]: Python-3.11.5.tgz
[INFO]: python3 download already cached, skipping
[INFO]: <- directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android
[INFO]: Downloading sdl2
[INFO]: -> directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/packages/sdl2
[DEBUG]: -> running basename https://github.com/libsdl-org/SDL/releases/download/release-2.28.5/SDL2-2.28.5.tar.gz
[DEBUG]: SDL2-2.28.5.tar.gz
[INFO]: sdl2 download already cached, skipping
[INFO]: <- directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android
[INFO]: Downloading setuptools
[INFO]: -> directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/packages/setuptools
[DEBUG]: -> running basename https://pypi.python.org/packages/source/s/setuptools/setuptools-51.3.3.tar.gz
[DEBUG]: setuptools-51.3.3.tar.gz
[INFO]: setuptools download already cached, skipping
[INFO]: <- directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android
[INFO]: Downloading six
[INFO]: -> directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/packages/six
[DEBUG]: -> running basename https://pypi.python.org/packages/source/s/six/six-1.15.0.tar.gz
[DEBUG]: six-1.15.0.tar.gz
[INFO]: six download already cached, skipping
[INFO]: <- directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android
[INFO]: Downloading pyjnius
[INFO]: -> directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/packages/pyjnius
[DEBUG]: -> running basename https://github.com/kivy/pyjnius/archive/1.6.1.zip
[DEBUG]: 1.6.1.zip
[INFO]: pyjnius download already cached, skipping
[INFO]: <- directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android
[INFO]: Downloading android
[INFO]: Skipping android download as no URL is set
[INFO]: Downloading kivy
[INFO]: -> directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/packages/kivy
[DEBUG]: -> running basename https://github.com/kivy/kivy/archive/2.3.0.zip
[DEBUG]: 2.3.0.zip
[INFO]: kivy download already cached, skipping
[INFO]: <- directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android
[INFO]: # Building all recipes for arch arm64-v8a
[INFO]: # Unpacking recipes
[INFO]: Unpacking hostpython3 for arm64-v8a
[DEBUG]: -> running basename https://www.python.org/ftp/python/3.11.5/Python-3.11.5.tgz
[DEBUG]: Python-3.11.5.tgz
[INFO]: -> directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop
[INFO]: hostpython3 is already unpacked, skipping
[INFO]: <- directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android
[INFO]: Unpacking libffi for arm64-v8a
[DEBUG]: -> running basename https://github.com/libffi/libffi/archive/v3.4.2.tar.gz
[DEBUG]: v3.4.2.tar.gz
[INFO]: -> directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/libffi/arm64-v8a__ndk_target_21
[INFO]: libffi is already unpacked, skipping
[INFO]: <- directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android
[INFO]: Unpacking openssl for arm64-v8a
[DEBUG]: -> running basename https://www.openssl.org/source/openssl-1.1.1w.tar.gz
[DEBUG]: openssl-1.1.1w.tar.gz
[INFO]: -> directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/openssl/arm64-v8a__ndk_target_21
[INFO]: openssl is already unpacked, skipping
[INFO]: <- directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android
[INFO]: Unpacking sdl2_image for arm64-v8a
[DEBUG]: -> running basename https://github.com/libsdl-org/SDL_image/releases/download/release-2.8.0/SDL2_image-2.8.0.tar.gz
[DEBUG]: SDL2_image-2.8.0.tar.gz
[INFO]: -> directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/bootstrap_builds/sdl2/jni
[INFO]: sdl2_image is already unpacked, skipping
[INFO]: <- directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android
[INFO]: Unpacking sdl2_mixer for arm64-v8a
[DEBUG]: -> running basename https://github.com/libsdl-org/SDL_mixer/releases/download/release-2.6.3/SDL2_mixer-2.6.3.tar.gz
[DEBUG]: SDL2_mixer-2.6.3.tar.gz
[INFO]: -> directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/bootstrap_builds/sdl2/jni
[INFO]: sdl2_mixer is already unpacked, skipping
[INFO]: <- directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android
[INFO]: Unpacking sdl2_ttf for arm64-v8a
[DEBUG]: -> running basename https://github.com/libsdl-org/SDL_ttf/releases/download/release-2.20.2/SDL2_ttf-2.20.2.tar.gz
[DEBUG]: SDL2_ttf-2.20.2.tar.gz
[INFO]: -> directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/bootstrap_builds/sdl2/jni
[INFO]: sdl2_ttf is already unpacked, skipping
[INFO]: <- directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android
[INFO]: Unpacking sqlite3 for arm64-v8a
[DEBUG]: -> running basename https://www.sqlite.org/2021/sqlite-amalgamation-3350500.zip
[DEBUG]: sqlite-amalgamation-3350500.zip
[INFO]: -> directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/sqlite3/arm64-v8a__ndk_target_21
[INFO]: sqlite3 is already unpacked, skipping
[INFO]: <- directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android
[INFO]: Unpacking python3 for arm64-v8a
[DEBUG]: -> running basename https://www.python.org/ftp/python/3.11.5/Python-3.11.5.tgz
[DEBUG]: Python-3.11.5.tgz
[INFO]: -> directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/python3/arm64-v8a__ndk_target_21
[INFO]: python3 is already unpacked, skipping
[INFO]: <- directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android
[INFO]: Unpacking sdl2 for arm64-v8a
[DEBUG]: -> running basename https://github.com/libsdl-org/SDL/releases/download/release-2.28.5/SDL2-2.28.5.tar.gz
[DEBUG]: SDL2-2.28.5.tar.gz
[INFO]: -> directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/bootstrap_builds/sdl2/jni
[INFO]: sdl2 is already unpacked, skipping
[INFO]: <- directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android
[INFO]: Unpacking setuptools for arm64-v8a
[DEBUG]: -> running basename https://pypi.python.org/packages/source/s/setuptools/setuptools-51.3.3.tar.gz
[DEBUG]: setuptools-51.3.3.tar.gz
[INFO]: -> directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/setuptools/arm64-v8a__ndk_target_21
[INFO]: setuptools is already unpacked, skipping
[INFO]: <- directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android
[INFO]: Unpacking six for arm64-v8a
[DEBUG]: -> running basename https://pypi.python.org/packages/source/s/six/six-1.15.0.tar.gz
[DEBUG]: six-1.15.0.tar.gz
[INFO]: -> directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/six/arm64-v8a__ndk_target_21
[INFO]: six is already unpacked, skipping
[INFO]: <- directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android
[INFO]: Unpacking pyjnius for arm64-v8a
[DEBUG]: -> running basename https://github.com/kivy/pyjnius/archive/1.6.1.zip
[DEBUG]: 1.6.1.zip
[INFO]: -> directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/pyjnius-sdl2/arm64-v8a__ndk_target_21
[INFO]: pyjnius is already unpacked, skipping
[INFO]: <- directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android
[DEBUG]: Remove directory and subdirectory /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/android-sdl2/arm64-v8a__ndk_target_21/android
[DEBUG]: -> running cp -a /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/android/src /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/android-sdl2/arm64-v8a__ndk_target_21/android
[INFO]: Unpacking kivy for arm64-v8a
[DEBUG]: -> running basename https://github.com/kivy/kivy/archive/2.3.0.zip
[DEBUG]: 2.3.0.zip
[INFO]: -> directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/kivy/arm64-v8a__ndk_target_21
[INFO]: kivy is already unpacked, skipping
[INFO]: <- directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android
[INFO]: # Prebuilding recipes
[INFO]: Prebuilding hostpython3 for arm64-v8a
[INFO]: hostpython3 has no prebuild_arm64_v8a, skipping
[INFO]: Applying patches for hostpython3[arm64-v8a]
[INFO]: hostpython3 already patched, skipping
[INFO]: Prebuilding libffi for arm64-v8a
[INFO]: libffi has no prebuild_arm64_v8a, skipping
[INFO]: Applying patches for libffi[arm64-v8a]
[INFO]: libffi already patched, skipping
[INFO]: Prebuilding openssl for arm64-v8a
[INFO]: openssl has no prebuild_arm64_v8a, skipping
[INFO]: Prebuilding sdl2_image for arm64-v8a
[INFO]: sdl2_image has no prebuild_arm64_v8a, skipping
[INFO]: Applying patches for sdl2_image[arm64-v8a]
[INFO]: sdl2_image already patched, skipping
[INFO]: Prebuilding sdl2_mixer for arm64-v8a
[INFO]: sdl2_mixer has no prebuild_arm64_v8a, skipping
[INFO]: Prebuilding sdl2_ttf for arm64-v8a
[INFO]: sdl2_ttf has no prebuild_arm64_v8a, skipping
[INFO]: Prebuilding sqlite3 for arm64-v8a
[INFO]: sqlite3 has no prebuild_arm64_v8a, skipping
[INFO]: Prebuilding python3 for arm64-v8a
[INFO]: python3 has no prebuild_arm64_v8a, skipping
[INFO]: Applying patches for python3[arm64-v8a]
[INFO]: python3 already patched, skipping
[INFO]: Prebuilding sdl2 for arm64-v8a
[INFO]: sdl2 has no prebuild_arm64_v8a, skipping
[INFO]: Prebuilding setuptools for arm64-v8a
[INFO]: setuptools has no prebuild_arm64_v8a, skipping
[INFO]: Prebuilding six for arm64-v8a
[INFO]: six has no prebuild_arm64_v8a, skipping
[INFO]: Prebuilding pyjnius for arm64-v8a
[INFO]: pyjnius has no prebuild_arm64_v8a, skipping
[INFO]: Applying patches for pyjnius[arm64-v8a]
[INFO]: pyjnius already patched, skipping
[INFO]: Prebuilding android for arm64-v8a
[INFO]: android has no prebuild_arm64_v8a, skipping
[INFO]: -> directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/android-sdl2/arm64-v8a__ndk_target_21/android
[INFO]: <- directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android
[INFO]: Prebuilding kivy for arm64-v8a
[INFO]: kivy has no prebuild_arm64_v8a, skipping
[INFO]: Applying patches for kivy[arm64-v8a]
[INFO]: kivy already patched, skipping
[INFO]: # Building recipes
[INFO]: Building hostpython3 for arm64-v8a
[INFO]: hostpython3 said it is already built, skipping
[INFO]: Building libffi for arm64-v8a
[INFO]: -> directory context /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/libffi/arm64-v8a__ndk_target_21/libffi
[DEBUG]: -> running autoreconf -vif
[DEBUG]: autoreconf: export WARNINGS=
[DEBUG]: autoreconf: Entering directory '.'
[DEBUG]: autoreconf: configure.ac: not using Gettext
[DEBUG]: autoreconf: running: aclocal --force -I m4
[DEBUG]: autoreconf: configure.ac: tracing
[DEBUG]: autoreconf: running: libtoolize --copy --force
[DEBUG]: libtoolize: putting auxiliary files in '.'.
[DEBUG]: libtoolize: copying file './ltmain.sh'
[DEBUG]: libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'.
[DEBUG]: libtoolize: copying file 'm4/libtool.m4'
[DEBUG]: libtoolize: copying file 'm4/ltoptions.m4'
[DEBUG]: libtoolize: copying file 'm4/ltsugar.m4'
[DEBUG]: libtoolize: copying file 'm4/ltversion.m4'
[DEBUG]: libtoolize: copying file 'm4/lt~obsolete.m4'
[DEBUG]: autoreconf: configure.ac: not using Intltool
[DEBUG]: autoreconf: configure.ac: not using Gtkdoc
[DEBUG]: autoreconf: running: aclocal --force -I m4
[DEBUG]: autoreconf: running: /usr/bin/autoconf --force
[DEBUG]: configure.ac:8: warning: The macro AC_CANONICAL_SYSTEM' is obsolete. [DEBUG]: configure.ac:8: You should run autoupdate. [DEBUG]: ./lib/autoconf/general.m4:2081: AC_CANONICAL_SYSTEM is expanded from... [DEBUG]: configure.ac:8: the top level [DEBUG]: configure.ac:41: warning: The macro AC_PROG_LIBTOOL' is obsolete.
[DEBUG]: configure.ac:41: You should run autoupdate.
[DEBUG]: m4/libtool.m4:99: AC_PROG_LIBTOOL is expanded from...
[DEBUG]: configure.ac:41: the top level
[DEBUG]: configure.ac:74: warning: The macro AC_TRY_COMPILE' is obsolete. [DEBUG]: configure.ac:74: You should run autoupdate. [DEBUG]: ./lib/autoconf/general.m4:2847: AC_TRY_COMPILE is expanded from... [DEBUG]: lib/m4sugar/m4sh.m4:692: _AS_IF_ELSE is expanded from... [DEBUG]: lib/m4sugar/m4sh.m4:699: AS_IF is expanded from... [DEBUG]: ./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from... [DEBUG]: ./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from... [DEBUG]: acinclude.m4:3: AC_FUNC_MMAP_BLACKLIST is expanded from... [DEBUG]: configure.ac:74: the top level [DEBUG]: configure.ac:91: warning: The macro AC_HEADER_STDC' is obsolete.
[DEBUG]: configure.ac:91: You should run autoupdate.
[DEBUG]: ./lib/autoconf/headers.m4:704: AC_HEADER_STDC is expanded from...
[DEBUG]: configure.ac:91: the top level
[DEBUG]: configure.ac:118: warning: The macro AC_TRY_COMPILE' is obsolete. [DEBUG]: configure.ac:118: You should run autoupdate. [DEBUG]: ./lib/autoconf/general.m4:2847: AC_TRY_COMPILE is expanded from... [DEBUG]: lib/m4sugar/m4sh.m4:692: _AS_IF_ELSE is expanded from... [DEBUG]: lib/m4sugar/m4sh.m4:699: AS_IF is expanded from... [DEBUG]: ./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from... [DEBUG]: ./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from... [DEBUG]: m4/asmcfi.m4:1: GCC_AS_CFI_PSEUDO_OP is expanded from... [DEBUG]: configure.ac:118: the top level [DEBUG]: configure.ac:122: warning: The macro AC_TRY_LINK' is obsolete.
[DEBUG]: configure.ac:122: You should run autoupdate.
[DEBUG]: ./lib/autoconf/general.m4:2920: AC_TRY_LINK is expanded from...
[DEBUG]: lib/m4sugar/m4sh.m4:692: _AS_IF_ELSE is expanded from...
[DEBUG]: lib/m4sugar/m4sh.m4:699: AS_IF is expanded from...
[DEBUG]: ./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
[DEBUG]: ./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
[DEBUG]: configure.ac:122: the top level
[DEBUG]: configure.ac:138: warning: The macro AC_TRY_COMPILE' is obsolete. [DEBUG]: configure.ac:138: You should run autoupdate. [DEBUG]: ./lib/autoconf/general.m4:2847: AC_TRY_COMPILE is expanded from... [DEBUG]: lib/m4sugar/m4sh.m4:692: _AS_IF_ELSE is expanded from... [DEBUG]: lib/m4sugar/m4sh.m4:699: AS_IF is expanded from... [DEBUG]: ./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from... [DEBUG]: ./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from... [DEBUG]: configure.ac:138: the top level [DEBUG]: configure.ac:185: warning: The macro AC_TRY_COMPILE' is obsolete.
[DEBUG]: configure.ac:185: You should run autoupdate.
[DEBUG]: ./lib/autoconf/general.m4:2847: AC_TRY_COMPILE is expanded from...
[DEBUG]: lib/m4sugar/m4sh.m4:692: _AS_IF_ELSE is expanded from...
[DEBUG]: lib/m4sugar/m4sh.m4:699: AS_IF is expanded from...
[DEBUG]: ./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
[DEBUG]: ./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
[DEBUG]: configure.ac:185: the top level
[DEBUG]: configure.ac:310: warning: The macro AC_HELP_STRING' is obsolete. [DEBUG]: configure.ac:310: You should run autoupdate. [DEBUG]: ./lib/autoconf/general.m4:204: AC_HELP_STRING is expanded from... [DEBUG]: configure.ac:310: the top level [DEBUG]: configure.ac:418: warning: The macro AC_HELP_STRING' is obsolete.
[DEBUG]: configure.ac:418: You should run autoupdate.
[DEBUG]: ./lib/autoconf/general.m4:204: AC_HELP_STRING is expanded from...
[DEBUG]: acinclude.m4:353: LIBFFI_ENABLE_SYMVERS is expanded from...
[DEBUG]: configure.ac:418: the top level
[DEBUG]: configure.ac:418: warning: The macro AC_PROG_LD' is obsolete. [DEBUG]: configure.ac:418: You should run autoupdate. [DEBUG]: m4/libtool.m4:3341: AC_PROG_LD is expanded from... [DEBUG]: acinclude.m4:251: LIBFFI_CHECK_LINKER_FEATURES is expanded from... [DEBUG]: acinclude.m4:353: LIBFFI_ENABLE_SYMVERS is expanded from... [DEBUG]: configure.ac:418: the top level [DEBUG]: configure.ac:418: warning: The macro AC_TRY_RUN' is obsolete.
[DEBUG]: configure.ac:418: You should run autoupdate.
[DEBUG]: ./lib/autoconf/general.m4:2997: AC_TRY_RUN is expanded from...
[DEBUG]: acinclude.m4:251: LIBFFI_CHECK_LINKER_FEATURES is expanded from...
[DEBUG]: acinclude.m4:353: LIBFFI_ENABLE_SYMVERS is expanded from...
[DEBUG]: configure.ac:418: the top level
[DEBUG]: configure.ac:418: warning: The macro AC_TRY_LINK' is obsolete. [DEBUG]: configure.ac:418: You should run autoupdate. [DEBUG]: ./lib/autoconf/general.m4:2920: AC_TRY_LINK is expanded from... [DEBUG]: acinclude.m4:353: LIBFFI_ENABLE_SYMVERS is expanded from... [DEBUG]: configure.ac:418: the top level [DEBUG]: autoreconf: running: /usr/bin/autoheader --force [DEBUG]: autoreconf: running: automake --add-missing --copy --force-missing [DEBUG]: configure.ac:31: installing './compile' [DEBUG]: configure.ac:19: installing './missing' [DEBUG]: Makefile.am: installing './depcomp' [DEBUG]: autoreconf: Leaving directory '.' [DEBUG]: -> running configure --host=aarch64-linux-android --prefix=/mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/libffi/arm64-v8a__ndk_target_21/libffi --disable-builddir --enable-shared [DEBUG]: checking build system type... x86_64-pc-linux-gnu [DEBUG]: checking host system type... aarch64-unknown-linux-android [DEBUG]: checking target system type... aarch64-unknown-linux-android [DEBUG]: checking for gsed... sed [DEBUG]: checking for a BSD-compatible install... /usr/bin/install -c [DEBUG]: checking whether build environment is sane... yes [DEBUG]: checking for aarch64-linux-android-strip... /root/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-strip --strip-unneeded [DEBUG]: checking for a race-free mkdir -p... /usr/bin/mkdir -p [DEBUG]: checking for gawk... gawk [DEBUG]: checking whether make -j4 sets $(MAKE)... yes [DEBUG]: checking whether make -j4 supports nested variables... yes [DEBUG]: checking for aarch64-linux-android-gcc... /root/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -target aarch64-linux-android21 -fomit-frame-pointer -march=armv8-a -fPIC [DEBUG]: checking whether the C compiler works... no [DEBUG]: configure: error: in /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/libffi/arm64-v8a__ndk_target_21/libffi':
[DEBUG]: configure: error: C compiler cannot create executables
[DEBUG]: See `config.log' for more details
Exception in thread background thread for pid 50107:
Traceback (most recent call last):
File "/usr/lib/python3.10/threading.py", line 1016, in _bootstrap_inner
self.run()
File "/usr/lib/python3.10/threading.py", line 953, in run
self._target(*self._args, **self._kwargs)
File "/root/.local/lib/python3.10/site-packages/sh.py", line 1641, in wrap
fn(*rgs, **kwargs)
File "/root/.local/lib/python3.10/site-packages/sh.py", line 2569, in background_thread
handle_exit_code(exit_code)
File "/root/.local/lib/python3.10/site-packages/sh.py", line 2269, in fn
return self.command.handle_command_exit_code(exit_code)
File "/root/.local/lib/python3.10/site-packages/sh.py", line 869, in handle_command_exit_code
raise exc
sh.ErrorReturnCode_77:

RAN: /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/libffi/arm64-v8a__ndk_target_21/libffi/configure --host=aarch64-linux-android --prefix=/mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/libffi/arm64-v8a__ndk_target_21/libffi --disable-builddir --enable-shared

STDOUT:
checking build system type... x86_64-pc-linux-gnu
checking host system type... aarch64-unknown-linux-android
checking target system type... aarch64-unknown-linux-android
checking for gsed... sed
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for aarch64-linux-android-strip... /root/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-strip --strip-unneeded
checking for a race-free mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make -j4 sets $(MAKE)... yes
checking whether make -j4 supports nested variables... yes
checking for aarch64-linux-android-gcc... /root/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -target aarch64-linux-android21 -fomit-frame-pointer -march=armv8-a -fPIC
checking whether the C compiler works... no
configure: error: in /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/libffi/arm64-v8a__ndk_target_21/libffi': configure: error: C compiler cannot create executables See config.log' for more details

STDERR:

Traceback (most recent call last):
File "/usr/lib/python3.10/runpy.py", line 196, in _run_module_as_main
return _run_code(code, main_globals, None,
File "/usr/lib/python3.10/runpy.py", line 86, in _run_code
exec(code, run_globals)
File "/mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android/pythonforandroid/toolchain.py", line 1256, in
main()
File "/mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android/pythonforandroid/entrypoints.py", line 18, in main
ToolchainCL()
File "/mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android/pythonforandroid/toolchain.py", line 685, in init
getattr(self, command)(args)
File "/mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android/pythonforandroid/toolchain.py", line 104, in wrapper_func
build_dist_from_args(ctx, dist, args)
File "/mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android/pythonforandroid/toolchain.py", line 163, in build_dist_from_args
build_recipes(build_order, python_modules, ctx,
File "/mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android/pythonforandroid/build.py", line 504, in build_recipes
recipe.build_arch(arch)
File "/mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/libffi/init.py", line 30, in build_arch
shprint(sh.Command('./configure'),
File "/mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/python-for-android/pythonforandroid/logger.py", line 167, in shprint
for line in output:
File "/root/.local/lib/python3.10/site-packages/sh.py", line 915, in next
self.wait()
File "/root/.local/lib/python3.10/site-packages/sh.py", line 845, in wait
self.handle_command_exit_code(exit_code)
File "/root/.local/lib/python3.10/site-packages/sh.py", line 869, in handle_command_exit_code
raise exc
sh.ErrorReturnCode_77:

RAN: /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/libffi/arm64-v8a__ndk_target_21/libffi/configure --host=aarch64-linux-android --prefix=/mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/libffi/arm64-v8a__ndk_target_21/libffi --disable-builddir --enable-shared

STDOUT:
checking build system type... x86_64-pc-linux-gnu
checking host system type... aarch64-unknown-linux-android
checking target system type... aarch64-unknown-linux-android
checking for gsed... sed
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for aarch64-linux-android-strip... /root/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-strip --strip-unneeded
checking for a race-free mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make -j4 sets $(MAKE)... yes
checking whether make -j4 supports nested variables... yes
checking for aarch64-linux-android-gcc... /root/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -target aarch64-linux-android21 -fomit-frame-pointer -march=armv8-a -fPIC
checking whether the C compiler works... no
configure: error: in /mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/libffi/arm64-v8a__ndk_target_21/libffi': configure: error: C compiler cannot create executables See config.log' for more details

STDERR:

Command failed: ['/usr/bin/python3', '-m', 'pythonforandroid.toolchain', 'create', '--dist_name=Boton gm', '--bootstrap=sdl2', '--requirements=python3,kivy', '--arch=arm64-v8a', '--arch=armeabi-v7a', '--copy-libs', '--color=always', '--storage-dir=/mnt/c/Users/jeffm/Desktop/Kivygame/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a', '--ndk-api=21', '--ignore-setup-py', '--debug']

ENVIRONMENT:

SHELL = '/bin/bash'

SUDO_GID = '1000'

SUDO_COMMAND = '/usr/bin/su'

SUDO_USER = 'etzel'

PWD = '/mnt/c/Users/jeffm/Desktop/Kivygame'

LOGNAME = 'root'

XDG_SESSION_TYPE = 'tty'

HOME = '/root'

LANG = 'C.UTF-8'

LS_COLORS = 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:.tar=01;31:.tgz=01;31:.arc=01;31:.arj=01;31:.taz=01;31:.lha=01;31:.lz4=01;31:.lzh=01;31:.lzma=01;31:.tlz=01;31:.txz=01;31:.tzo=01;31:.t7z=01;31:.zip=01;31:.z=01;31:.dz=01;31:.gz=01;31:.lrz=01;31:.lz=01;31:.lzo=01;31:.xz=01;31:.zst=01;31:.tzst=01;31:.bz2=01;31:.bz=01;31:.tbz=01;31:.tbz2=01;31:.tz=01;31:.deb=01;31:.rpm=01;31:.jar=01;31:.war=01;31:.ear=01;31:.sar=01;31:.rar=01;31:.alz=01;31:.ace=01;31:.zoo=01;31:.cpio=01;31:.7z=01;31:.rz=01;31:.cab=01;31:.wim=01;31:.swm=01;31:.dwm=01;31:.esd=01;31:.jpg=01;35:.jpeg=01;35:.mjpg=01;35:.mjpeg=01;35:.gif=01;35:.bmp=01;35:.pbm=01;35:.pgm=01;35:.ppm=01;35:.tga=01;35:.xbm=01;35:.xpm=01;35:.tif=01;35:.tiff=01;35:.png=01;35:.svg=01;35:.svgz=01;35:.mng=01;35:.pcx=01;35:.mov=01;35:.mpg=01;35:.mpeg=01;35:.m2v=01;35:.mkv=01;35:.webm=01;35:.webp=01;35:.ogm=01;35:.mp4=01;35:.m4v=01;35:.mp4v=01;35:.vob=01;35:.qt=01;35:.nuv=01;35:.wmv=01;35:.asf=01;35:.rm=01;35:.rmvb=01;35:.flc=01;35:.avi=01;35:.fli=01;35:.flv=01;35:.gl=01;35:.dl=01;35:.xcf=01;35:.xwd=01;35:.yuv=01;35:.cgm=01;35:.emf=01;35:.ogv=01;35:.ogx=01;35:.aac=00;36:.au=00;36:.flac=00;36:.m4a=00;36:.mid=00;36:.midi=00;36:.mka=00;36:.mp3=00;36:.mpc=00;36:.ogg=00;36:.ra=00;36:.wav=00;36:.oga=00;36:.opus=00;36:.spx=00;36:.xspf=00;36:'

LESSCLOSE = '/usr/bin/lesspipe %s %s'

XDG_SESSION_CLASS = 'user'

TERM = 'xterm-256color'

LESSOPEN = '| /usr/bin/lesspipe %s'

USER = 'root'

DISPLAY = ':0'

SHLVL = '1'

XDG_SESSION_ID = 'c2'

XDG_RUNTIME_DIR = '/run/user/0'

PATH = '/root/.buildozer/android/platform/apache-ant-1.9.4/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/root/.local/bin/:/root/.local/bin/'

SUDO_UID = '1000'

MAIL = '/var/mail/root'

OLDPWD = '/usr/lib'

_ = '/root/.local/bin/buildozer'

PACKAGES_PATH = '/root/.buildozer/android/packages'

ANDROIDSDK = '/root/.buildozer/android/platform/android-sdk'

ANDROIDNDK = '/root/.buildozer/android/platform/android-ndk-r25b'

ANDROIDAPI = '31'

ANDROIDMINAPI = '21'

Buildozer failed to execute the last command

The error might be hidden in the log above this error

Please read the full log, and search for it before

raising an issue with buildozer itself.

In case of a bug report, please add a full log with log_level = 2

@Marcinosoft
Copy link

#1801 (comment)
or
#1797 (comment)

Copy link

github-actions bot commented Jun 3, 2024

This issue has been automatically closed because there has been no response to our request for more information from the original author. With only the information that is currently in the issue, we don't have the means to take action. Please reach out if you have or find the answers we need so that we can investigate further.

@github-actions github-actions bot closed this as completed Jun 3, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants