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

jnius/jnius.c:196:12: fatal error: 'longintrepr.h' file not found #1862

Open
pigwa88 opened this issue Oct 10, 2024 · 0 comments
Open

jnius/jnius.c:196:12: fatal error: 'longintrepr.h' file not found #1862

pigwa88 opened this issue Oct 10, 2024 · 0 comments

Comments

@pigwa88
Copy link

pigwa88 commented Oct 10, 2024

Versions

  • Python: 3.12 (also tested 3.9, 3.10, +)
  • OS: Ubuntu
  • Buildozer: 1.5.0

Description

I give up! Yesterday I spent the entire day and literally the whole night trying different configurations in buildozer.spec to find the right one. I searched for information on Google, various AI chats, and forums. I even tried switching Python and a few other versions to older and newer ones. I wasted a good 15 hours of my life in frustration, just to avoid learning Android Studio. But now I know that gadgets like Buildozer/Kivy aren't worth the time because even the simplest Python code struggles to compile properly on Android! A waste of time and nerves!

If you're reading this and thinking about using this compiler, I advise against it! Spend your time learning Android Studio because this compiler scrapes the bottom and isn't worth any attention! https://github.com/pigwa88/buildozer_sucks
btw. one compilation takes me 15 minutes with i7/16GB!

Python main.app

from kivy.app import App
from kivy.uix.boxlayout import BoxLayout
from kivy.uix.button import Button
from kivy.uix.label import Label

class MyWidget(BoxLayout):
    def __init__(self, **kwargs):
        super(MyWidget, self).__init__(**kwargs)
        self.orientation = 'vertical'
        
        self.button = Button(text='click me', size_hint=(1, 0.2),font_size=24)
        self.button.bind(on_press=self.on_button_click)
        
        self.label = Label(text='',size_hint=(1, 0.8), font_size=32)
        
        self.add_widget(self.button)
        self.add_widget(self.label)
    
    def on_button_click(self, instance):
        self.label.text = "its working!"

class MyApp(App):
    def build(self):
        return MyWidget()

if __name__ == '__main__':
    MyApp().run()

buildozer.spec

Spec file:

[app]
#was also with:
#requirements = python3==3.10.12,kivy==2.3.0,hostpython3==3.10.12,pyjnius==1.5.0
#osx.python_version = 3.10.12
#osx.kivy_version = 2.3.0

# (str) Title of your application
title = My Kivy App

# (str) Package name
package.name = mykivyapp

# (str) Package domain (needed for android/ios packaging) //was also  with  org.example 
package.domain = org.test

# (str) Source code where the main.py is located
source.dir = .
source.include_exts = py,png,jpg,kv,atlas

# (str) The main .py file to use as the main entry point for you app
source.main = main.py

# (list) Application requirements
# Specified dependencies 
# here was also other version and smt like:  python3,kivy,pyjnius
requirements = python3=3.10.6,kivy,pyjnius

# (str) Presplash of the application
#presplash.filename = %(source.dir)s/data/presplash.png

# (str) Icon of the application
#icon.filename = %(source.dir)s/data/icon.png

# (list) Permissions
# Jeśli aplikacja wymaga specjalnych uprawnień, j # !
 android.permissions = INTERNET


# (bool) Indicate if the application should be fullscreen or not
fullscreen = 1

# (bool) Use the Android logcat for debug
android.logcat_mode = release

# (str) Application versioning
version = 1.0

# (str) Application versioning (method 2)
# version.regex = __version__ = ['"](.*)['"]
# version.filename = %(source.dir)s/main.py

# (list) Application requirements
# comma separated e.g. requirements = sqlite3,kivy
#requirements = python3,kivy

# (str) Custom source folders for requirements
# Sets custom source for any requirements with recipes
# requirements.source.kivy = ../../kivy

# (str) Presplash of the application
#presplash.filename = %(source.dir)s/data/presplash.png

# (str) Icon of the application
#icon.filename = %(source.dir)s/data/icon.png

# (list) Supported orientations
# Valid options are: landscape, portrait, portrait-reverse or landscape-reverse
orientation = portrait

# (list) List of service to declare
#services = NAME:ENTRYPOINT_TO_PY,NAME2:ENTRYPOINT2_TO_PY

#
# OSX Specific
#

#
# author = © Copyright Info

# change the major version of python used by the app
osx.python_version = 3

# Kivy version to use
osx.kivy_version = 1.9.1

#
# Android specific
#
android.target = 30
# (bool) Indicate if the application should be fullscreen or not
#fullscreen = 0

# (string) Presplash background color (for android toolchain)
# Supported formats are: #RRGGBB #AARRGGBB or one of the following names:
# red, blue, green, black, white, gray, cyan, magenta, yellow, lightgray,
# darkgray, grey, lightgrey, darkgrey, aqua, fuchsia, lime, maroon, navy,
# olive, purple, silver, teal.
#android.presplash_color = #FFFFFF

# (string) Presplash animation using Lottie format.
# see https://lottiefiles.com/ for examples and https://airbnb.design/lottie/
# for general documentation.
# Lottie files can be created using various tools, like Adobe After Effect or Synfig.
#android.presplash_lottie = "path/to/lottie/file.json"

# (str) Adaptive icon of the application (used if Android API level is 26+ at runtime)
#icon.adaptive_foreground.filename = %(source.dir)s/data/icon_fg.png
#icon.adaptive_background.filename = %(source.dir)s/data/icon_bg.png

# (list) Permissions
# (See https://python-for-android.readthedocs.io/en/latest/buildoptions/#build-options-1 for all the supported syntaxes and properties)
#android.permissions = android.permission.INTERNET, (name=android.permission.WRITE_EXTERNAL_STORAGE;maxSdkVersion=18)

# (list) features (adds uses-feature -tags to manifest)
#android.features = android.hardware.usb.host

# (int) Target Android API, should be as high as possible. //was also  with other version  #
android.api = 30

# (int) Minimum API your APK / AAB will support. //was also without and with other version  #
#android.minapi = 21

# (int) Android SDK version to use //deprecated was also with #
android.sdk = 30

# (str) Android NDK version to use //min.25b //was also  with other version  #
android.ndk = 25b

# (int) Android NDK API to use. This is the minimum API your app will support, it should usually match android.minapi. //was also  with other version  
android.ndk_api = 21

# (bool) Use --private data storage (True) or --dir public storage (False) //was also  with   #
android.private_storage = True

# (str) Android NDK directory (if empty, it will be automatically downloaded.) !
#android.ndk_path = /home/bgl/.buildozer/android/platform/android-ndk-r25b

# (str) Android SDK directory (if empty, it will be automatically downloaded.) !
#android.sdk_path = /home/bgl/.buildozer/android/platform/android-sdk

# (str) ANT directory (if empty, it will be automatically downloaded.)
#android.ant_path =

# (bool) If True, then skip trying to update the Android sdk
# This can be useful to avoid excess Internet downloads or save time
# when an update is due and you just want to test/build your package
# android.skip_update = False

# (bool) If True, then automatically accept SDK license
# agreements. This is intended for automation only. If set to False,
# the default, you will be shown the license when first running
# buildozer. ! #false
 android.accept_sdk_license = True

# (str) Android entry point, default is ok for Kivy-based app
#android.entrypoint = org.kivy.android.PythonActivity

# (str) Full name including package path of the Java class that implements Android Activity
# use that parameter together with android.entrypoint to set custom Java class instead of PythonActivity
#android.activity_class_name = org.kivy.android.PythonActivity

# (str) Extra xml to write directly inside the <manifest> element of AndroidManifest.xml
# use that parameter to provide a filename from where to load your custom XML code
#android.extra_manifest_xml = ./src/android/extra_manifest.xml

# (str) Extra xml to write directly inside the <manifest><application> tag of AndroidManifest.xml
# use that parameter to provide a filename from where to load your custom XML arguments:
#android.extra_manifest_application_arguments = ./src/android/extra_manifest_application_arguments.xml

# (str) Full name including package path of the Java class that implements Python Service
# use that parameter to set custom Java class which extends PythonService
#android.service_class_name = org.kivy.android.PythonService

# (str) Android app theme, default is ok for Kivy-based app
# android.apptheme = "@android:style/Theme.NoTitleBar"

# (list) Pattern to whitelist for the whole project
#android.whitelist =

# (str) Path to a custom whitelist file
#android.whitelist_src =

# (str) Path to a custom blacklist file
#android.blacklist_src =

# (list) List of Java .jar files to add to the libs so that pyjnius can access
# their classes. Don't add jars that you do not need, since extra jars can slow
# down the build process. Allows wildcards matching, for example:
# OUYA-ODK/libs/*.jar
#android.add_jars = foo.jar,bar.jar,path/to/more/*.jar

# (list) List of Java files to add to the android project (can be java or a
# directory containing the files)
#android.add_src =

# (list) Android AAR archives to add
#android.add_aars =

# (list) Put these files or directories in the apk assets directory.
# Either form may be used, and assets need not be in 'source.include_exts'.
# 1) android.add_assets = source_asset_relative_path
# 2) android.add_assets = source_asset_path:destination_asset_relative_path
#android.add_assets =

# (list) Put these files or directories in the apk res directory.
# The option may be used in three ways, the value may contain one or zero ':'
# Some examples:
# 1) A file to add to resources, legal resource names contain ['a-z','0-9','_']
# android.add_resources = my_icons/all-inclusive.png:drawable/all_inclusive.png
# 2) A directory, here  'legal_icons' must contain resources of one kind
# android.add_resources = legal_icons:drawable
# 3) A directory, here 'legal_resources' must contain one or more directories, 
# each of a resource kind:  drawable, xml, etc...
# android.add_resources = legal_resources
#android.add_resources =

# (list) Gradle dependencies to add ! #
android.gradle_dependencies = 'androidx.core:core:1.6.0', 'androidx.appcompat:appcompat:1.3.1'

# (bool) Enable AndroidX support. Enable when 'android.gradle_dependencies'
# contains an 'androidx' package, or any package from Kotlin source.
# android.enable_androidx requires android.api >= 28
#android.enable_androidx = True

# (list) add java compile options
# this can for example be necessary when importing certain java libraries using the 'android.gradle_dependencies' option
# see https://developer.android.com/studio/write/java8-support for further information
# android.add_compile_options = "sourceCompatibility = 1.8", "targetCompatibility = 1.8"

# (list) Gradle repositories to add {can be necessary for some android.gradle_dependencies}
# please enclose in double quotes 
# e.g. android.gradle_repositories = "maven { url 'https://kotlin.bintray.com/ktor' }"
#android.add_gradle_repositories =

# (list) packaging options to add 
# see https://google.github.io/android-gradle-dsl/current/com.android.build.gradle.internal.dsl.PackagingOptions.html
# can be necessary to solve conflicts in gradle_dependencies
# please enclose in double quotes 
# e.g. android.add_packaging_options = "exclude 'META-INF/common.kotlin_module'", "exclude 'META-INF/*.kotlin_module'"
#android.add_packaging_options =

# (list) Java classes to add as activities to the manifest.
#android.add_activities = com.example.ExampleActivity

# (str) OUYA Console category. Should be one of GAME or APP
# If you leave this blank, OUYA support will not be enabled
#android.ouya.category = GAME

# (str) Filename of OUYA Console icon. It must be a 732x412 png image.
#android.ouya.icon.filename = %(source.dir)s/data/ouya_icon.png

# (str) XML file to include as an intent filters in <activity> tag
#android.manifest.intent_filters =

# (list) Copy these files to src/main/res/xml/ (used for example with intent-filters)
#android.res_xml = PATH_TO_FILE,

# (str) launchMode to set for the main activity
#android.manifest.launch_mode = standard

# (str) screenOrientation to set for the main activity.
# Valid values can be found at https://developer.android.com/guide/topics/manifest/activity-element
#android.manifest.orientation = fullSensor

# (list) Android additional libraries to copy into libs/armeabi
#android.add_libs_armeabi = libs/android/*.so
#android.add_libs_armeabi_v7a = libs/android-v7/*.so
#android.add_libs_arm64_v8a = libs/android-v8/*.so
#android.add_libs_x86 = libs/android-x86/*.so
#android.add_libs_mips = libs/android-mips/*.so

# (bool) Indicate whether the screen should stay on
# Don't forget to add the WAKE_LOCK permission if you set this to True
#android.wakelock = False

# (list) Android application meta-data to set (key=value format)
#android.meta_data =

# (list) Android library project to add (will be added in the
# project.properties automatically.)
#android.library_references =

# (list) Android shared libraries which will be added to AndroidManifest.xml using <uses-library> tag
#android.uses_library =

# (str) Android logcat filters to use
#android.logcat_filters = *:S python:D

# (bool) Android logcat only display log for activity's pid
#android.logcat_pid_only = False

# (str) Android additional adb arguments
#android.adb_args = -H host.docker.internal

# (bool) Copy library instead of making a libpymodules.so
#android.copy_libs = 1

# (list) The Android archs to build for, choices: armeabi-v7a, arm64-v8a, x86, x86_64
# In past, was `android.arch` as we weren't supporting builds for multiple archs at the same time.
android.archs = armeabi-v7a

# (int) overrides automatic versionCode computation (used in build.gradle)
# this is not the same as app version and should only be edited if you know what you're doing
# android.numeric_version = 1

# (bool) enables Android auto backup feature (Android API >=23)
android.allow_backup = True

# (str) XML file for custom backup rules (see official auto backup documentation)
# android.backup_rules =

# (str) If you need to insert variables into your AndroidManifest.xml file,
# you can do so with the manifestPlaceholders property.
# This property takes a map of key-value pairs. (via a string)
# Usage example : android.manifest_placeholders = [myCustomUrl:\"org.kivy.customurl\"]
# android.manifest_placeholders = [:]

# (bool) Skip byte compile for .py files
# android.no-byte-compile-python = False

# (str) The format used to package the app for release mode (aab or apk or aar).
# android.release_artifact = aab

# (str) The format used to package the app for debug mode (apk or aar).
# android.debug_artifact = apk

#
# Python for android (p4a) specific
#

# (str) python-for-android URL to use for checkout
#p4a.url =

# (str) python-for-android fork to use in case if p4a.url is not specified, defaults to upstream (kivy)
#p4a.fork = kivy

# (str) python-for-android branch to use, defaults to master ! #
p4a.branch = master

# (str) python-for-android specific commit to use, defaults to HEAD, must be within p4a.branch
#p4a.commit = HEAD

# (str) python-for-android git clone directory (if empty, it will be automatically cloned from github)
#p4a.source_dir =

# (str) The directory in which python-for-android should look for your own build recipes (if any)
#p4a.local_recipes =

# (str) Filename to the hook for p4a
#p4a.hook =

# (str) Bootstrap to use for android builds
# p4a.bootstrap = sdl2

# (int) port number to specify an explicit --port= p4a argument (eg for bootstrap flask)
#p4a.port =

# Control passing the --use-setup-py vs --ignore-setup-py to p4a
# "in the future" --use-setup-py is going to be the default behaviour in p4a, right now it is not
# Setting this to false will pass --ignore-setup-py, true will pass --use-setup-py
# NOTE: this is general setuptools integration, having pyproject.toml is enough, no need to generate
# setup.py if you're using Poetry, but you need to add "toml" to source.include_exts.
#p4a.setup_py = false

# (str) extra command line arguments to pass when invoking pythonforandroid.toolchain
#p4a.extra_args =



#
# iOS specific
#

# (str) Path to a custom kivy-ios folder
#ios.kivy_ios_dir = ../kivy-ios
# Alternately, specify the URL and branch of a git checkout:
ios.kivy_ios_url = https://github.com/kivy/kivy-ios
ios.kivy_ios_branch = master

# Another platform dependency: ios-deploy
# Uncomment to use a custom checkout
#ios.ios_deploy_dir = ../ios_deploy
# Or specify URL and branch
ios.ios_deploy_url = https://github.com/phonegap/ios-deploy
ios.ios_deploy_branch = 1.10.0

# (bool) Whether or not to sign the code
ios.codesign.allowed = false

# (str) Name of the certificate to use for signing the debug version
# Get a list of available identities: buildozer ios list_identities
#ios.codesign.debug = "iPhone Developer: <lastname> <firstname> (<hexstring>)"

# (str) The development team to use for signing the debug version
#ios.codesign.development_team.debug = <hexstring>

# (str) Name of the certificate to use for signing the release version
#ios.codesign.release = %(ios.codesign.debug)s

# (str) The development team to use for signing the release version
#ios.codesign.development_team.release = <hexstring>

# (str) URL pointing to .ipa file to be installed
# This option should be defined along with `display_image_url` and `full_size_image_url` options.
#ios.manifest.app_url =

# (str) URL pointing to an icon (57x57px) to be displayed during download
# This option should be defined along with `app_url` and `full_size_image_url` options.
#ios.manifest.display_image_url =

# (str) URL pointing to a large icon (512x512px) to be used by iTunes
# This option should be defined along with `app_url` and `display_image_url` options.
#ios.manifest.full_size_image_url =


[buildozer]

# (int) Log level (0 = error only, 1 = info, 2 = debug (with command output))
log_level = 2

# (int) Display warning if buildozer is run as root (0 = False, 1 = True)
warn_on_root = 1

# (str) Path to build artifact storage, absolute or relative to spec file
# build_dir = ./.buildozer

# (str) Path to build output (i.e. .apk, .aab, .ipa) storage
# bin_dir = ./bin

#    -----------------------------------------------------------------------------
#    List as sections
#
#    You can define all the "list" as [section:key].
#    Each line will be considered as a option to the list.
#    Let's take [app] / source.exclude_patterns.
#    Instead of doing:
#
#[app]
#source.exclude_patterns = license,data/audio/*.wav,data/images/original/*
#
#    This can be translated into:
#
#[app:source.exclude_patterns]
#license
#data/audio/*.wav
#data/images/original/*
#


#    -----------------------------------------------------------------------------
#    Profiles
#
#    You can extend section / key with a profile
#    For example, you want to deploy a demo version of your application without
#    HD content. You could first change the title to add "(demo)" in the name
#    and extend the excluded directories to remove the HD content.
#
#[app@demo]
#title = My Application (demo)
#
#[app:source.exclude_patterns@demo]
#images/hd/*
#
#    Then, invoke the command line with the "demo" profile:
#
#buildozer --profile demo android debug

Logs

[INFO]:    Building pyjnius for armeabi-v7a
[INFO]:    jnius apparently isn't already in site-packages                                                            
[INFO]:    Cythonizing anything necessary in pyjnius                                                                  
[DEBUG]:   Create directory /home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/pyjnius-sdl2/ar
meabi-v7a__ndk_target_21/objects_pyjnius                                                                              
[INFO]:    -> directory context /home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/pyjnius-sdl
2/armeabi-v7a__ndk_target_21/pyjnius
[DEBUG]:   -> running python3 -c import sys; print(sys.path)
[DEBUG]:          ['', '/home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop
/hostpython3/native-build/Lib', '/home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython
3/desktop/hostpython3/native-build/Lib/site-packages', '/home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/
other_builds/hostpython3/desktop/hostpython3/native-build/build/temp.linux-x86_64-3.11', '/home/bgl/.buildozer/android
/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build/build/lib.linux-x86_64-3.1
1', '/home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native
-build/build/scripts-3.11', '/usr/local/lib/python311.zip', '/home/bgl/.buildozer/android/platform/build-armeabi-v7a/b
uild/other_builds/hostpython3/desktop/hostpython3/Lib']                                                               
[DEBUG]:   cwd is /home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/pyjnius-sdl2/armeabi-v7a_
_ndk_target_21/pyjnius                                                                                                
[INFO]:    Trying first build of pyjnius to get cython files: this is expected to fail                                
[DEBUG]:   -> running python3 setup.py build_ext -v                                                                   
[DEBUG]:          warning: [options] bootstrap class path not set in conjunction with -source 8                       
[DEBUG]:          warning: [options] source value 8 is obsolete and will be removed in a future release               
[DEBUG]:          warning: [options] target value 8 is obsolete and will be removed in a future release               
[DEBUG]:          warning: [options] To suppress warnings about obsolete options, use -Xlint:-options.                
[DEBUG]:          4 warnings                                                                                          
[DEBUG]:          running build_ext                                                                                   
[DEBUG]:          building 'jnius' extension                                                                          
[DEBUG]:          creating build                                                                                      
[DEBUG]:          creating build/temp.linux-x86_64-3.11                                                               
[DEBUG]:          creating build/temp.linux-x86_64-3.11/jnius                                                         
[DEBUG]:          /home/bgl/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/cla
ng -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -
Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mf
loat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/p
ython3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -I/home/bgl/.buildozer/android/platform/android-ndk-r25b/t
oolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include -I/home/bgl/.buildozer/android/platform/build-armeabi-v7a/bui
ld/python-installs/mykivyapp/armeabi-v7a/include/python3.1 -fPIC -I/home/bgl/.buildozer/android/platform/build-armeabi
-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/bgl/.buildozer/android/platform/build-armeabi-
v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c jnius/jnius.c -o build/temp.linux-x86_64-3.11/j
nius/jnius.o                                                                                                          
[DEBUG]:          clang-14: error: no such file or directory: 'jnius/jnius.c'                                         
[DEBUG]:          clang-14: error: no input files                                                                     
[DEBUG]:          error: command '/home/bgl/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linu
x-x86_64/bin/clang' failed with exit code 1                                                                           
Exception in thread background thread for pid 413351:                                                                 
Traceback (most recent call last):                                                                                    
  File "/usr/lib/python3.12/threading.py", line 1073, in _bootstrap_inner                                             
    self.run()                                                                                                        
  File "/usr/lib/python3.12/threading.py", line 1010, in run                                                          
    self._target(*self._args, **self._kwargs)                                                                         
  File "/home/bgl/kivy_env/lib/python3.12/site-packages/sh.py", line 1641, in wrap                                    
    fn(*rgs, **kwargs)                                                                                                
  File "/home/bgl/kivy_env/lib/python3.12/site-packages/sh.py", line 2569, in background_thread                       
    handle_exit_code(exit_code)                                                                                       
  File "/home/bgl/kivy_env/lib/python3.12/site-packages/sh.py", line 2269, in fn                                      
    return self.command.handle_command_exit_code(exit_code)                                                           
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^                                                           
  File "/home/bgl/kivy_env/lib/python3.12/site-packages/sh.py", line 869, in handle_command_exit_code                 
    raise exc                                                                                                         
sh.ErrorReturnCode_1:                                                                                                 
                                                                                                                      
  RAN: /home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/nati
ve-build/python3 setup.py build_ext -v                                                                                
                                                                                                                      
  STDOUT:                                                                                                             
warning: [options] bootstrap class path not set in conjunction with -source 8                                         
warning: [options] source value 8 is obsolete and will be removed in a future release                                 
warning: [options] target value 8 is obsolete and will be removed in a future release                                 
warning: [options] To suppress warnings about obsolete options, use -Xlint:-options.                                  
4 warnings                                                                                                            
running build_ext                                                                                                     
building 'jnius' extension                                                                                            
creating build                                                                                                        
creating build/temp.linux-x86_64-3.11                                                                                 
creating build/temp.linux-x86_64-3.11/jnius                                                                           
/home/bgl/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -target armv7a-
linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -Wsign-compare -DND
EBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -m
fpu=vfp -mthumb -fPIC -I/home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a
__ndk_target_21/python3/Include -DANDROID -I/home/bgl/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/pre
built/linux-x86_64/sysroot/usr/include -I/home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/python-installs
/mykivyapp/armeabi-v7a/include/python3.1 -fPIC -I/home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/other_b
uilds/hostpython3/desktop/hostpython3/Include -I/home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/other_bu
ilds/hostpython3/desktop/hostpython3/native-build -c jnius/jnius.c -o build/temp.linux-x86_64-3.11/jnius/jnius.o      
clang-14: error: no such file or directory: 'jnius/jnius.c'                                                           
clang-14: error: no input files                                                                                       
error: command '/home/bgl/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/clang
' failed with exit code 1                                                                                             
                                                                                                                      
                                                                                                                      
  STDERR:                                                                                                             
                                                                                                                      
[INFO]:    pyjnius first build failed (as expected)                                                                   
[INFO]:    Running cython where appropriate                                                                           
[INFO]:    Cythonize jnius/jnius.pyx                                                                                  
[DEBUG]:   -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(setuptools_main
()); ./jnius/jnius.pyx                                                                                                
[DEBUG]:          /home/bgl/kivy_env/lib/python3.12/site-packages/Cython/Compiler/Main.py:369: FutureWarning: Cython d
irective 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /home/bgl/.buildo
zer/android/platform/build-armeabi-v7a/build/other_builds/pyjnius-sdl2/armeabi-v7a__ndk_target_21/pyjnius/jnius/jnius.
pyx                                                                                                                   
[DEBUG]:            tree = Parsing.p_module(s, pxd, full_module_name)                                                 
[DEBUG]:   -> running python3 setup.py build_ext -v                                                                   
[DEBUG]:          warning: [options] bootstrap class path not set in conjunction with -source 8                       
[DEBUG]:          warning: [options] source value 8 is obsolete and will be removed in a future release               
[DEBUG]:          warning: [options] target value 8 is obsolete and will be removed in a future release               
[DEBUG]:          warning: [options] To suppress warnings about obsolete options, use -Xlint:-options.                
[DEBUG]:          4 warnings                                                                                          
[DEBUG]:          running build_ext                                                                                   
[DEBUG]:          building 'jnius' extension                                                                          
[DEBUG]:          /home/bgl/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/cla
ng -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -
Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mf
loat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/p
ython3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -I/home/bgl/.buildozer/android/platform/android-ndk-r25b/t
oolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include -I/home/bgl/.buildozer/android/platform/build-armeabi-v7a/bui
ld/python-installs/mykivyapp/armeabi-v7a/include/python3.1 -fPIC -I/home/bgl/.buildozer/android/platform/build-armeabi
-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/bgl/.buildozer/android/platform/build-armeabi-
v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c jnius/jnius.c -o build/temp.linux-x86_64-3.11/j
nius/jnius.o                                                                                                          
[DEBUG]:          jnius/jnius.c:196:12: fatal error: 'longintrepr.h' file not found                                   
[DEBUG]:            #include "longintrepr.h"                                                                          
[DEBUG]:                     ^~~~~~~~~~~~~~~                                                                          
[DEBUG]:          1 error generated.                                                                                  
[DEBUG]:          error: command '/home/bgl/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linu
x-x86_64/bin/clang' failed with exit code 1                                                                           
Exception in thread background thread for pid 413398:                                                                 
Traceback (most recent call last):                                                                                    
  File "/usr/lib/python3.12/threading.py", line 1073, in _bootstrap_inner                                             
    self.run()                                                                                                        
  File "/usr/lib/python3.12/threading.py", line 1010, in run                                                          
    self._target(*self._args, **self._kwargs)                                                                         
  File "/home/bgl/kivy_env/lib/python3.12/site-packages/sh.py", line 1641, in wrap                                    
    fn(*rgs, **kwargs)                                                                                                
  File "/home/bgl/kivy_env/lib/python3.12/site-packages/sh.py", line 2569, in background_thread                       
    handle_exit_code(exit_code)                                                                                       
  File "/home/bgl/kivy_env/lib/python3.12/site-packages/sh.py", line 2269, in fn                                      
    return self.command.handle_command_exit_code(exit_code)                                                           
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^                                                           
  File "/home/bgl/kivy_env/lib/python3.12/site-packages/sh.py", line 869, in handle_command_exit_code                 
    raise exc                                                                                                         
sh.ErrorReturnCode_1:                                                                                                 
                                                                                                                      
  RAN: /home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/nati
ve-build/python3 setup.py build_ext -v                                                                                
                                                                                                                      
  STDOUT:                                                                                                             
warning: [options] bootstrap class path not set in conjunction with -source 8                                         
warning: [options] source value 8 is obsolete and will be removed in a future release                                 
warning: [options] target value 8 is obsolete and will be removed in a future release                                 
warning: [options] To suppress warnings about obsolete options, use -Xlint:-options.                                  
4 warnings                                                                                                            
running build_ext                                                                                                     
building 'jnius' extension                                                                                            
/home/bgl/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -target armv7a-
linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -Wsign-compare -DND
EBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -m
fpu=vfp -mthumb -fPIC -I/home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a
__ndk_target_21/python3/Include -DANDROID -I/home/bgl/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/pre
built/linux-x86_64/sysroot/usr/include -I/home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/python-installs
/mykivyapp/armeabi-v7a/include/python3.1 -fPIC -I/home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/other_b
uilds/hostpython3/desktop/hostpython3/Include -I/home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/other_bu
ilds/hostpython3/desktop/hostpython3/native-build -c jnius/jnius.c -o build/temp.linux-x86_64-3.11/jnius/jnius.o      
jnius/jnius.c:196:12: fatal error: 'longintrepr.h' file not found                                                     
  #include "longintrepr.h"                                                                                            
           ^~~~~~~~~~~~~~~                                                                                            
1 error generated.                                                                                                    
error: command '/home/bgl/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/clang
' failed with exit code 1                                                                                             
                                                                                                                      
                                                                                                                      
  STDERR:                                                                                                             
                                                                                                                      
[INFO]:    STDOUT:                                                                                                    
    warning: [options] bootstrap class path not set in conjunction with -source 8   
warning: [options] source value 8 is obsolete and will be removed in a future release   
warning: [options] target value 8 is obsolete and will be removed in a future release   
warning: [options] To suppress warnings about obsolete options, use -Xlint:-options.    
4 warnings      
running build_ext       
building 'jnius' extension      
/home/bgl/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -target armv7a-
linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -Wsign-compare -DND
EBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -m
fpu=vfp -mthumb -fPIC -I/home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a
__ndk_target_21/python3/Include -DANDROID -I/home/bgl/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/pre
built/linux-x86_64/sysroot/usr/include -I/home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/python-installs
/mykivyapp/armeabi-v7a/include/python3.1 -fPIC -I/home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/other_b
uilds/hostpython3/desktop/hostpython3/Include -I/home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/other_bu
ilds/hostpython3/desktop/hostpython3/native-build -c jnius/jnius.c -o build/temp.linux-x86_64-3.11/jnius/jnius.o      
  
jnius/jnius.c:196:12: fatal error: 'longintrepr.h' file not found       
  #include "longintrepr.h"      
           ^~~~~~~~~~~~~~~      
1 error generated.      
error: command '/home/bgl/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/clang
' failed with exit code 1
[INFO]:    STDERR:
    
[INFO]:    ENV:
export HOME='/home/bgl'                                                                                               
export CFLAGS='-target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mt
humb -fPIC -I/home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_targe
t_21/python3/Include'                                                                                                 
export CXXFLAGS='-target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -
mthumb -fPIC'                                                                                                         
export CPPFLAGS='-DANDROID -I/home/bgl/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86
_64/sysroot/usr/include -I/home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/mykivyapp/arme
abi-v7a/include/python3.1'                                                                                            
export LDFLAGS='  -L/home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/libs_collections/mykivyapp/armeabi-v
7a -L/home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/pyt
hon3/android-build -lpython3.11 -L/home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/libs_collections/mykiv
yapp/armeabi-v7a -L/home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/libs_collections/mykivyapp  -L/home/b
gl/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/obj/local/armeabi-v7a '                  
export LDLIBS='-lm'                                                                                                   
export PATH='/home/bgl/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin:/home/bg
l/.buildozer/android/platform/android-ndk-r25b:/home/bgl/.buildozer/android/platform/android-sdk/tools:/home/bgl/.buil
dozer/android/platform/apache-ant-1.9.4/bin:/home/bgl/kivy_env/bin:/home/bgl/.local/bin:/home/bgl/bin:/usr/local/sbin:
/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/home/bgl/.buildozer/android/platfo
rm/android-sdk/tools:/home/bgl/.buildozer/android/platform/android-sdk/platform-tools'                                
export CC='/home/bgl/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -tar
get armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC'        
export CXX='/home/bgl/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -
target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC'     
export AR='/home/bgl/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-ar'  
export RANLIB='/home/bgl/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-r
anlib'                                                                                                                
export STRIP='/home/bgl/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-st
rip --strip-unneeded'                                                                                                 
export READELF='/home/bgl/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-
readelf'                                                                                                              
export OBJCOPY='/home/bgl/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-
objcopy'                                                                                                              
export MAKE='make -j12'                                                                                               
export ARCH='armeabi-v7a'                                                                                             
export NDK_API='android-21'                                                                                           
export LDSHARED='/home/bgl/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/clan
g -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -s
hared'                                                                                                                
export BUILDLIB_PATH='/home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/h
ostpython3/native-build/build/lib.linux-x86_64-3.11'                                                                  
export PYTHONNOUSERSITE='1'                                                                                           
export LANG='en_GB.UTF-8'                                                                                             
export PYTHONPATH='/home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/host
python3/native-build/Lib:/home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/deskto
p/hostpython3/native-build/Lib/site-packages:/home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/other_build
s/hostpython3/desktop/hostpython3/native-build/build/temp.linux-x86_64-3.11:/home/bgl/.buildozer/android/platform/buil
d-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build/build/lib.linux-x86_64-3.11:/home/bgl/.b
uildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build/build/scri
pts-3.11'                                                                                                             
export LIBLINK='NOTNONE'                                                                                              
export COPYLIBS='1'                                                                                                   
export LIBLINK_PATH='/home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/pyjnius-sdl2/armeabi-v
7a__ndk_target_21/objects_pyjnius'                                                                                    
export NDKPLATFORM='NOTNONE'                                                                                          
                                                                                                                      
[INFO]:    COMMAND:
cd /home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/pyjnius-sdl2/armeabi-v7a__ndk_target_21/
pyjnius && /home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/
native-build/python3 setup.py build_ext -v                                                                            
                                                                                                                      
[WARNING]: ERROR: /home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostp
ython3/native-build/python3 failed!
# Command failed: ['/home/bgl/kivy_env/bin/python3', '-m', 'pythonforandroid.toolchain', 'create', '--dist_name=mykivy
app', '--bootstrap=sdl2', '--requirements=python3=3.10.6,kivy,pyjnius\n\n\n\nandroid.permissions = INTERNET', '--arch=
armeabi-v7a', '--copy-libs', '--color=always', '--storage-dir=/home/bgl/.buildozer/android/platform/build-armeabi-v7a'
, '--ndk-api=21', '--ignore-setup-py', '--debug']
# ENVIRONMENT:
#     SHELL = '/bin/bash'
#     JAVA_HOME = '/usr/lib/jvm/java-11-openjdk-amd64'
#     PWD = '/home/bgl'
#     LOGNAME = 'bgl'
#     XDG_SESSION_TYPE = 'tty'
#     ANDROIDNDK = '/home/bgl/.buildozer/android/platform/android-ndk-r25b'
#     LINES = '47'
#     HOME = '/home/bgl'
#     LANG = 'en_US.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:s
u=37;41:sg=30;43:ca=00: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;3
1:*.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;3
1:*.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:*.avif=01;35:*.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;3
5:*.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:*.rm
vb=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:*.c
gm=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:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;
90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=
00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:'
#     COLUMNS = '118'
#     SHELLINABOX_REALIP = ''
#     VIRTUAL_ENV = '/home/bgl/kivy_env'
#     SHELLINABOX_PEERNAME = '192.168.2.32'
#     LESSCLOSE = '/usr/bin/lesspipe %s %s'
#     XDG_SESSION_CLASS = 'user'
#     TERM = 'xterm'
#     LESSOPEN = '| /usr/bin/lesspipe %s'
#     USER = 'bgl'
#     SHLVL = '1'
#     XDG_SESSION_ID = '109'
#     VIRTUAL_ENV_PROMPT = '(kivy_env) '
#     XDG_RUNTIME_DIR = '/run/user/1000'
#     PS1 = ('(kivy_env) \\[\\e]0;\\u@\\h: '
 '\\w\\a\\]${debian_chroot:+($debian_chroot)}\\u@\\h:\\w\\$ ')
#     DEBUGINFOD_URLS = 'https://debuginfod.ubuntu.com '
#     ANDROIDSDK = '/home/bgl/.buildozer/android/platform/android-sdk'
#     XDG_DATA_DIRS = '/usr/share/gnome:/usr/local/share:/usr/share:/var/lib/snapd/desktop'
#     HUSHLOGIN = 'FALSE'
#     PATH = '/home/bgl/.buildozer/android/platform/apache-ant-1.9.4/bin:/home/bgl/kivy_env/bin:/home/bgl/.local/bin:/
home/bgl/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/home/
bgl/.buildozer/android/platform/android-sdk/tools:/home/bgl/.buildozer/android/platform/android-sdk/platform-tools'
#     DBUS_SESSION_BUS_ADDRESS = 'unix:path=/run/user/1000/bus'
#     SHELLINABOX_URL = 'https://192.168.2.48:4200/'
#     MAIL = '/var/mail/bgl'
#     REMOTEHOST = '192.168.2.32'
#     _ = '/home/bgl/kivy_env/bin/buildozer'
#     PACKAGES_PATH = '/home/bgl/.buildozer/android/packages'
#     ANDROIDAPI = '30'
#     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.

OR buildozer.spec with cfg:

requirements = python3==3.10.12,kivy==2.3.0,hostpython3==3.10.12,pyjnius==1.5.0
osx.python_version = 3.10.12
osx.kivy_version = 2.3.0

android.permissions" requested                                                                                        
[INFO]:    Will compile for the following archs: armeabi-v7a                                                          
[DEBUG]:   Create directory /home/bgl/.buildozer/android/platform/build-armeabi-v7a                                   
[DEBUG]:   Create directory /home/bgl/.buildozer/android/platform/build-armeabi-v7a/build                             
[DEBUG]:   Create directory /home/bgl/.buildozer/android/platform/build-armeabi-v7a/dists                             
[DEBUG]:   Create directory /home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds            
[DEBUG]:   Create directory /home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/other_builds                
[INFO]:    Found Android API target in $ANDROIDAPI: 30                                                                
[INFO]:    Available Android APIs are (30)                                                                            
[INFO]:    Requested API target 30 is available, continuing.                                                          
[INFO]:    Found NDK dir in $ANDROIDNDK: /home/bgl/.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!                                                             
[INFO]:    No dist exists that meets your requirements, so one will be built.                                         
[INFO]:    Found a single valid recipe set: ['=', 'hostpython3', 'internet', '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 mykivyapp and requirements (python3, kivy, pyjnius, =, INTERNET)                       
[INFO]:    Dist contains the following requirements as recipes: ['hostpython3', 'libffi', 'openssl', 'sdl2_image', 'sd
l2_mixer', 'sdl2_ttf', 'sqlite3', 'python3', 'sdl2', 'setuptools', 'six', 'pyjnius', 'android', 'kivy']               
[INFO]:    Dist will also contain modules (certifi, urllib3, internet, idna, chardet, requests, =) installed from pip 
[INFO]:    Dist will be build in mode debug                                                                           
[INFO]:    -> directory context /home/bgl/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2
[INFO]:    <- directory context /home/bgl/.buildozer/android/platform/python-for-android
[DEBUG]:   Create directory /home/bgl/.buildozer/android/platform/build-armeabi-v7a/dists/mykivyapp                   
[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, internet, requests, urllib3) were not found as recipes, they w
ill be installed with pip.                                                                                            
[INFO]:    # Downloading recipes 
[INFO]:    Downloading hostpython3
[DEBUG]:   Create directory /home/bgl/.buildozer/android/platform/build-armeabi-v7a/packages/hostpython3              
[INFO]:    -> directory context /home/bgl/.buildozer/android/platform/build-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                                                                                   
[DEBUG]:   Downloading hostpython3 from https://www.python.org/ftp/python/3.11.5/Python-3.11.5.tgz                    
[DEBUG]:   -> running rm -f .mark-Python-3.11.5.tgz                                                                   
[INFO]:    Downloading hostpython3 from https://www.python.org/ftp/python/3.11.5/Python-3.11.5.tgz                    
[INFO]:    <- directory context /home/bgl/.buildozer/android/platform/python-for-android
[INFO]:    Downloading libffi
[DEBUG]:   Create directory /home/bgl/.buildozer/android/platform/build-armeabi-v7a/packages/libffi                   
[INFO]:    -> directory context /home/bgl/.buildozer/android/platform/build-armeabi-v7a/packages/libffi
[DEBUG]:   -> running basename https://github.com/libffi/libffi/archive/v3.4.2.tar.gz                                 
[DEBUG]:          v3.4.2.tar.gz                                                                                       
[DEBUG]:   Downloading libffi from https://github.com/libffi/libffi/archive/v3.4.2.tar.gz                             
[DEBUG]:   -> running rm -f .mark-v3.4.2.tar.gz                                                                       
[INFO]:    Downloading libffi from https://github.com/libffi/libffi/archive/v3.4.2.tar.gz                             
[INFO]:    <- directory context /home/bgl/.buildozer/android/platform/python-for-android
[INFO]:    Downloading openssl
[DEBUG]:   Create directory /home/bgl/.buildozer/android/platform/build-armeabi-v7a/packages/openssl                  
[INFO]:    -> directory context /home/bgl/.buildozer/android/platform/build-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                                                                               
[DEBUG]:   Downloading openssl from https://www.openssl.org/source/openssl-1.1.1w.tar.gz                              
[DEBUG]:   -> running rm -f .mark-openssl-1.1.1w.tar.gz                                                               
[INFO]:    Downloading openssl from https://www.openssl.org/source/openssl-1.1.1w.tar.gz                              
[INFO]:    <- directory context /home/bgl/.buildozer/android/platform/python-for-android
[INFO]:    Downloading sdl2_image
[DEBUG]:   Create directory /home/bgl/.buildozer/android/platform/build-armeabi-v7a/packages/sdl2_image               
[INFO]:    -> directory context /home/bgl/.buildozer/android/platform/build-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                                                                             
[DEBUG]:   Downloading sdl2_image from https://github.com/libsdl-org/SDL_image/releases/download/release-2.8.0/SDL2_im
age-2.8.0.tar.gz                                                                                                      
[DEBUG]:   -> running rm -f .mark-SDL2_image-2.8.0.tar.gz                                                             
[INFO]:    Downloading sdl2_image from https://github.com/libsdl-org/SDL_image/releases/download/release-2.8.0/SDL2_im
age-2.8.0.tar.gz                                                                                                      
[INFO]:    <- directory context /home/bgl/.buildozer/android/platform/python-for-android
[INFO]:    Downloading sdl2_mixer
[DEBUG]:   Create directory /home/bgl/.buildozer/android/platform/build-armeabi-v7a/packages/sdl2_mixer               
[INFO]:    -> directory context /home/bgl/.buildozer/android/platform/build-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                                                                             
[DEBUG]:   Downloading sdl2_mixer from https://github.com/libsdl-org/SDL_mixer/releases/download/release-2.6.3/SDL2_mi
xer-2.6.3.tar.gz                                                                                                      
[DEBUG]:   -> running rm -f .mark-SDL2_mixer-2.6.3.tar.gz                                                             
[INFO]:    Downloading sdl2_mixer from https://github.com/libsdl-org/SDL_mixer/releases/download/release-2.6.3/SDL2_mi
xer-2.6.3.tar.gz                                                                                                      
[INFO]:    <- directory context /home/bgl/.buildozer/android/platform/python-for-android
[INFO]:    Downloading sdl2_ttf
[DEBUG]:   Create directory /home/bgl/.buildozer/android/platform/build-armeabi-v7a/packages/sdl2_ttf                 
[INFO]:    -> directory context /home/bgl/.buildozer/android/platform/build-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                                                                              
[DEBUG]:   Downloading sdl2_ttf from https://github.com/libsdl-org/SDL_ttf/releases/download/release-2.20.2/SDL2_ttf-2
.20.2.tar.gz                                                                                                          
[DEBUG]:   -> running rm -f .mark-SDL2_ttf-2.20.2.tar.gz                                                              
[INFO]:    Downloading sdl2_ttf from https://github.com/libsdl-org/SDL_ttf/releases/download/release-2.20.2/SDL2_ttf-2
.20.2.tar.gz                                                                                                          
[INFO]:    <- directory context /home/bgl/.buildozer/android/platform/python-for-android
[INFO]:    Downloading sqlite3
[DEBUG]:   Create directory /home/bgl/.buildozer/android/platform/build-armeabi-v7a/packages/sqlite3                  
[INFO]:    -> directory context /home/bgl/.buildozer/android/platform/build-armeabi-v7a/packages/sqlite3
[DEBUG]:   -> running basename https://www.sqlite.org/2021/sqlite-amalgamation-3350500.zip                            
[DEBUG]:          sqlite-amalgamation-3350500.zip                                                                     
[DEBUG]:   Downloading sqlite3 from https://www.sqlite.org/2021/sqlite-amalgamation-3350500.zip                       
[DEBUG]:   -> running rm -f .mark-sqlite-amalgamation-3350500.zip                                                     
[INFO]:    Downloading sqlite3 from https://www.sqlite.org/2021/sqlite-amalgamation-3350500.zip                       
[INFO]:    <- directory context /home/bgl/.buildozer/android/platform/python-for-android
[INFO]:    Downloading python3
[DEBUG]:   Create directory /home/bgl/.buildozer/android/platform/build-armeabi-v7a/packages/python3                  
[INFO]:    -> directory context /home/bgl/.buildozer/android/platform/build-armeabi-v7a/packages/python3
[DEBUG]:   -> running basename https://www.python.org/ftp/python/3.10.12/Python-3.10.12.tgz                           
[DEBUG]:          Python-3.10.12.tgz                                                                                  
[DEBUG]:   Downloading python3 from https://www.python.org/ftp/python/3.10.12/Python-3.10.12.tgz                      
[DEBUG]:   -> running rm -f .mark-Python-3.10.12.tgz                                                                  
[INFO]:    Downloading python3 from https://www.python.org/ftp/python/3.10.12/Python-3.10.12.tgz                      
[INFO]:    <- directory context /home/bgl/.buildozer/android/platform/python-for-android
[INFO]:    Downloading sdl2
[DEBUG]:   Create directory /home/bgl/.buildozer/android/platform/build-armeabi-v7a/packages/sdl2                     
[INFO]:    -> directory context /home/bgl/.buildozer/android/platform/build-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                                                                                  
[DEBUG]:   Downloading sdl2 from https://github.com/libsdl-org/SDL/releases/download/release-2.28.5/SDL2-2.28.5.tar.gz
[DEBUG]:   -> running rm -f .mark-SDL2-2.28.5.tar.gz                                                                  
[INFO]:    Downloading sdl2 from https://github.com/libsdl-org/SDL/releases/download/release-2.28.5/SDL2-2.28.5.tar.gz
[INFO]:    <- directory context /home/bgl/.buildozer/android/platform/python-for-android
[INFO]:    Downloading setuptools
[DEBUG]:   Create directory /home/bgl/.buildozer/android/platform/build-armeabi-v7a/packages/setuptools               
[INFO]:    -> directory context /home/bgl/.buildozer/android/platform/build-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                                                                            
[DEBUG]:   Downloading setuptools from https://pypi.python.org/packages/source/s/setuptools/setuptools-51.3.3.tar.gz  
[DEBUG]:   -> running rm -f .mark-setuptools-51.3.3.tar.gz                                                            
[INFO]:    Downloading setuptools from https://pypi.python.org/packages/source/s/setuptools/setuptools-51.3.3.tar.gz  
[INFO]:    <- directory context /home/bgl/.buildozer/android/platform/python-for-android
[INFO]:    Downloading six
[DEBUG]:   Create directory /home/bgl/.buildozer/android/platform/build-armeabi-v7a/packages/six                      
[INFO]:    -> directory context /home/bgl/.buildozer/android/platform/build-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                                                                                   
[DEBUG]:   Downloading six from https://pypi.python.org/packages/source/s/six/six-1.15.0.tar.gz                       
[DEBUG]:   -> running rm -f .mark-six-1.15.0.tar.gz                                                                   
[INFO]:    Downloading six from https://pypi.python.org/packages/source/s/six/six-1.15.0.tar.gz                       
[INFO]:    <- directory context /home/bgl/.buildozer/android/platform/python-for-android
[INFO]:    Downloading pyjnius
[DEBUG]:   Create directory /home/bgl/.buildozer/android/platform/build-armeabi-v7a/packages/pyjnius                  
[INFO]:    -> directory context /home/bgl/.buildozer/android/platform/build-armeabi-v7a/packages/pyjnius
[DEBUG]:   -> running basename https://github.com/kivy/pyjnius/archive/1.5.0                                          
                                                                                                                      
                                                                                                                      
                                                                                                                      
android.permissions.zip                                                                                               
[DEBUG]:          1.5.0                                                                                               
[DEBUG]:                                                                                                              
[DEBUG]:                                                                                                              
[DEBUG]:                                                                                                              
[DEBUG]:          android.permissions.zip                                                                             
[DEBUG]:   Downloading pyjnius from https://github.com/kivy/pyjnius/archive/1.5.0                                     
                                                                                                                      
                                                                                                                      
                                                                                                                      
android.permissions.zip                                                                                               
[DEBUG]:   -> running rm -f .mark-1.5.0                                                                               
                                                                                                                      
                                                                                                                      
                                                                                                                      
android.permissions.zip                                                                                               
[INFO]:    Downloading pyjnius from https://github.com/kivy/pyjnius/archive/1.5.0                                     
                                                                                                                      
                                                                                                                      
                                                                                                                      
android.permissions.zip                                                                                               
Traceback (most recent call last):                                                                                    
  File "<frozen runpy>", line 198, in _run_module_as_main                                                             
  File "<frozen runpy>", line 88, in _run_code                                                                        
  File "/home/bgl/.buildozer/android/platform/python-for-android/pythonforandroid/toolchain.py", line 1256, in <module
>                                                                                                                     
    main()                                                                                                            
  File "/home/bgl/.buildozer/android/platform/python-for-android/pythonforandroid/entrypoints.py", line 18, in main   
    ToolchainCL()                                                                                                     
  File "/home/bgl/.buildozer/android/platform/python-for-android/pythonforandroid/toolchain.py", line 685, in __init__
    getattr(self, command)(args)                                                                                      
  File "/home/bgl/.buildozer/android/platform/python-for-android/pythonforandroid/toolchain.py", line 104, in wrapper_
func                                                                                                                  
    build_dist_from_args(ctx, dist, args)                                                                             
  File "/home/bgl/.buildozer/android/platform/python-for-android/pythonforandroid/toolchain.py", line 163, in build_di
st_from_args                                                                                                          
    build_recipes(build_order, python_modules, ctx,                                                                   
  File "/home/bgl/.buildozer/android/platform/python-for-android/pythonforandroid/build.py", line 482, in build_recipe
s                                                                                                                     
    recipe.download_if_necessary()                                                                                    
  File "/home/bgl/.buildozer/android/platform/python-for-android/pythonforandroid/recipe.py", line 352, in download_if
_necessary                                                                                                            
    self.download()                                                                                                   
  File "/home/bgl/.buildozer/android/platform/python-for-android/pythonforandroid/recipe.py", line 402, in download   
    self.download_file(self.versioned_url, filename)                                                                  
  File "/home/bgl/.buildozer/android/platform/python-for-android/pythonforandroid/recipe.py", line 206, in download_fi
le                                                                                                                    
    urlretrieve(url, target, report_hook)                                                                             
  File "/usr/lib/python3.12/urllib/request.py", line 240, in urlretrieve                                              
    with contextlib.closing(urlopen(url, data)) as fp:                                                                
                            ^^^^^^^^^^^^^^^^^^                                                                        
  File "/usr/lib/python3.12/urllib/request.py", line 215, in urlopen                                                  
    return opener.open(url, data, timeout)                                                                            
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^                                                                            
  File "/usr/lib/python3.12/urllib/request.py", line 515, in open                                                     
    response = self._open(req, data)                                                                                  
               ^^^^^^^^^^^^^^^^^^^^^                                                                                  
  File "/usr/lib/python3.12/urllib/request.py", line 532, in _open                                                    
    result = self._call_chain(self.handle_open, protocol, protocol +                                                  
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^                                                  
  File "/usr/lib/python3.12/urllib/request.py", line 492, in _call_chain                                              
    result = func(*args)                                                                                              
             ^^^^^^^^^^^                                                                                              
  File "/usr/lib/python3.12/urllib/request.py", line 1392, in https_open                                              
    return self.do_open(http.client.HTTPSConnection, req,                                                             
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^                                                             
  File "/usr/lib/python3.12/urllib/request.py", line 1344, in do_open                                                 
    h.request(req.get_method(), req.selector, req.data, headers,                                                      
  File "/usr/lib/python3.12/http/client.py", line 1336, in request                                                    
    self._send_request(method, url, body, headers, encode_chunked)                                                    
  File "/usr/lib/python3.12/http/client.py", line 1347, in _send_request                                              
    self.putrequest(method, url, **skips)                                                                             
  File "/usr/lib/python3.12/http/client.py", line 1181, in putrequest                                                 
    self._validate_path(url)                                                                                          
  File "/usr/lib/python3.12/http/client.py", line 1281, in _validate_path                                             
    raise InvalidURL(f"URL can't contain control characters. {url!r} "                                                
http.client.InvalidURL: URL can't contain control characters. '/kivy/pyjnius/archive/1.5.0\n\n\n\nandroid.permissions.
zip' (found at least '\n')                                                                                            
# Command failed: ['/home/bgl/kivy_env/bin/python3', '-m', 'pythonforandroid.toolchain', 'create', '--dist_name=mykivy
app', '--bootstrap=sdl2', '--requirements=python3==3.10.12,kivy==2.3.0,pyjnius==1.5.0\n\n\n\nandroid.permissions = INT
ERNET', '--arch=armeabi-v7a', '--copy-libs', '--color=always', '--storage-dir=/home/bgl/.buildozer/android/platform/bu
ild-armeabi-v7a', '--ndk-api=21', '--ignore-setup-py', '--debug']
# ENVIRONMENT:
#     SHELL = '/bin/bash'
#     JAVA_HOME = '/usr/lib/jvm/java-11-openjdk-amd64'
#     PWD = '/home/bgl'
#     LOGNAME = 'bgl'
#     XDG_SESSION_TYPE = 'tty'
#     ANDROIDNDK = '/home/bgl/.buildozer/android/platform/android-ndk-r25b'
#     LINES = '47'
#     HOME = '/home/bgl'
#     LANG = 'en_US.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:s
u=37;41:sg=30;43:ca=00: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;3
1:*.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;3
1:*.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:*.avif=01;35:*.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;3
5:*.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:*.rm
vb=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:*.c
gm=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:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;
90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=
00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:'
#     COLUMNS = '118'
#     SHELLINABOX_REALIP = ''
#     VIRTUAL_ENV = '/home/bgl/kivy_env'
#     SHELLINABOX_PEERNAME = '192.168.2.32'
#     LESSCLOSE = '/usr/bin/lesspipe %s %s'
#     XDG_SESSION_CLASS = 'user'
#     TERM = 'xterm'
#     LESSOPEN = '| /usr/bin/lesspipe %s'
#     USER = 'bgl'
#     SHLVL = '1'
#     XDG_SESSION_ID = '109'
#     VIRTUAL_ENV_PROMPT = '(kivy_env) '
#     XDG_RUNTIME_DIR = '/run/user/1000'
#     PS1 = ('(kivy_env) \\[\\e]0;\\u@\\h: '
 '\\w\\a\\]${debian_chroot:+($debian_chroot)}\\u@\\h:\\w\\$ ')
#     DEBUGINFOD_URLS = 'https://debuginfod.ubuntu.com/ '
#     ANDROIDSDK = '/home/bgl/.buildozer/android/platform/android-sdk'
#     XDG_DATA_DIRS = '/usr/share/gnome:/usr/local/share:/usr/share:/var/lib/snapd/desktop'
#     HUSHLOGIN = 'FALSE'
#     PATH = '/home/bgl/.buildozer/android/platform/apache-ant-1.9.4/bin:/home/bgl/kivy_env/bin:/home/bgl/.local/bin:/
home/bgl/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/home/
bgl/.buildozer/android/platform/android-sdk/tools:/home/bgl/.buildozer/android/platform/android-sdk/platform-tools'
#     DBUS_SESSION_BUS_ADDRESS = 'unix:path=/run/user/1000/bus'
#     SHELLINABOX_URL = 'https://192.168.2.48:4200/'
#     MAIL = '/var/mail/bgl'
#     REMOTEHOST = '192.168.2.32'
#     _ = '/home/bgl/kivy_env/bin/buildozer'
#     PACKAGES_PATH = '/home/bgl/.buildozer/android/packages'
#     ANDROIDAPI = '30'
#     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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant