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

During APK build, matplotlib build tries to link against wrong libpng version #1362

Closed
tviti opened this issue Oct 2, 2021 · 1 comment
Closed

Comments

@tviti
Copy link

tviti commented Oct 2, 2021

Versions

  • Python: 3.9.6
  • OS: CentOS 7
  • Buildozer: 1.2.0

Description

  • What are you trying to get done: Currently trying to build a little MWE application that uses kivy+matplotlib to display a plot on an Android phone, in order to assess whether kivy is appropriate for a project I'm working on.
  • What has happened: When building this down to an APK, the build fails during the matplotlib build, when the linker tries to link against libpng15. I've been poking around the generated .buildozer directory to see if I could figure out where this extra -lpng15 gets added to the link flags, but haven't found anything yet.
  • What went wrong: Somewhere in the build process, the wrong libpng version was inserted into the linker flags.
  • What did you expect: Build links against libpng16, succeeds, creates an APK that runs on an arm-v7a phone

buildozer.spec

Command (makeme.sh):

export JAVA_HOME="/usr/lib/jvm/java-1.8.0-openjdk/"
buildozer -v android debug "$@"

Which I ran with:

rm -rf ./.buildozer && ./makeme.sh

Spec file:

// REPLACE ME: Paste your buildozer.spec file here
[app]

# (str) Title of your application
title = My Application

# (str) Package name
package.name = myapp

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

# (str) Source code where the main.py live
source.dir = .

# (list) Source files to include (let empty to include all the files)
source.include_exts = py,png,jpg,kv,atlas

# (list) List of inclusions using pattern matching
#source.include_patterns = assets/*,images/*.png

# (list) Source files to exclude (let empty to not exclude anything)
#source.exclude_exts = spec

# (list) List of directory to exclude (let empty to not exclude anything)
#source.exclude_dirs = tests, bin

# (list) List of exclusions using pattern matching
#source.exclude_patterns = license,images/*/*.jpg

# (str) Application versioning (method 1)
version = 0.1

# (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,matplotlib

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

# (list) Garden requirements
#garden_requirements =

# (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

# (str) Supported orientation (one of landscape, sensorLandscape, portrait or all)
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
#

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

# (string) Presplash background color (for new 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

# (list) Permissions
#android.permissions = INTERNET

# (int) Target Android API, should be as high as possible.
#android.api = 27

# (int) Minimum API your APK will support.
#android.minapi = 21

# (int) Android SDK version to use
#android.sdk = 20

# (str) Android NDK version to use
#android.ndk = 19b

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

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

# (str) Android NDK directory (if empty, it will be automatically downloaded.)
#android.ndk_path =

# (str) Android SDK directory (if empty, it will be automatically downloaded.)
#android.sdk_path =

# (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.
# android.accept_sdk_license = False

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

# (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 (currently works only with sdl2_gradle
# bootstrap)
#android.add_aars =

# (list) Gradle dependencies to add (currently works only with sdl2_gradle
# bootstrap)
#android.gradle_dependencies =

# (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_gradle_repositories =

# (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 =

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

# (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) Copy library instead of making a libpymodules.so
#android.copy_libs = 1

# (str) The Android arch to build for, choices: armeabi-v7a, arm64-v8a, x86, x86_64
android.arch = 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

#
# Python for android (p4a) specific
#

# (str) python-for-android fork to use, defaults to upstream (kivy)
#p4a.fork = kivy

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

# (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 =


#
# 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.7.0

# (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) Name of the certificate to use for signing the release version
#ios.codesign.release = %(ios.codesign.debug)s


[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, .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

rm -rf ./.buildozer && ./makeme.sh
# Check configuration tokens
# Ensure build layout
# Create directory /home/vitit/Source/emtf90-kivy-test/.buildozer
# Create directory /home/vitit/Source/emtf90-kivy-test/bin
# Create directory /home/vitit/Source/emtf90-kivy-test/.buildozer/applibs
# Create directory /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform
# Create directory /home/vitit/Source/emtf90-kivy-test/.buildozer/android/app
# Check configuration tokens
# Read available permissions from api-versions.xml
# Preparing build
# Check requirements for android
# Run 'dpkg --version'
# Cwd None
/bin/sh: dpkg: command not found
# Search for Git (git)
#  -> found at /usr/bin/git
# Search for Cython (cython)
#  -> found at /home/vitit/miniconda3/envs/kivy-env/bin/cython
# Search for Java compiler (javac)
#  -> found at /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.302.b08-0.el7_9.x86_64/bin/javac
# Search for Java keytool (keytool)
#  -> found at /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.302.b08-0.el7_9.x86_64/jre/bin/keytool
# Install platform
# Run 'git clone -b master --single-branch https://github.com/kivy/python-for-android.git python-for-android'
# Cwd /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform
Cloning into 'python-for-android'...
# Run '/home/vitit/miniconda3/envs/kivy-env/bin/python -m pip install -q  \'appdirs\' \'colorama>=0.3.3\' \'jinja2\' \'six\' \'enum34; python_version<"3.4"\' \'sh>=1.10; sys_platform!="nt"\' \'pep517<0.7.0\' \'toml\''
# Cwd None
# Apache ANT found at /home/vitit/.buildozer/android/platform/apache-ant-1.9.4
# Android SDK found at /home/vitit/.buildozer/android/platform/android-sdk
# Recommended android's NDK version by p4a is: 19c
# Android NDK found at /home/vitit/.buildozer/android/platform/android-ndk-r19c
# Installing/updating SDK platform tools if necessary
# Run '/home/vitit/.buildozer/android/platform/android-sdk/tools/bin/sdkmanager --sdk_root=/home/vitit/.buildozer/android/platform/android-sdk platform-tools'
# Cwd /home/vitit/.buildozer/android/platform/android-sdk
[=======================================] 100% Computing updates...             
# Run '/home/vitit/.buildozer/android/platform/android-sdk/tools/bin/sdkmanager --sdk_root=/home/vitit/.buildozer/android/platform/android-sdk --update'
# Cwd /home/vitit/.buildozer/android/platform/android-sdk
[=======================================] 100% Computing updates...             
# Updating SDK build tools if necessary
# Run '/home/vitit/.buildozer/android/platform/android-sdk/tools/bin/sdkmanager --sdk_root=/home/vitit/.buildozer/android/platform/android-sdk --list'
# Cwd /home/vitit/.buildozer/android/platform/android-sdk
Installed packages:
  Path                 | Version | Description                | Location             
  -------              | ------- | -------                    | -------              
  build-tools;31.0.0   | 31.0.0  | Android SDK Build-Tools 31 | build-tools/31.0.0/  
  platform-tools       | 31.0.3  | Android SDK Platform-Tools | platform-tools/      
  platforms;android-27 | 3       | Android SDK Platform 27    | platforms/android-27/
  tools                | 2.0.0   | Android SDK Tools 2        | tools/               

Available Packages:
  Path                                                                                     | Version      | Description                                                         
  -------                                                                                  | -------      | -------                                                             
  add-ons;addon-google_apis-google-15                                                      | 3            | Google APIs                                                         
  add-ons;addon-google_apis-google-16                                                      | 4            | Google APIs                                                         
  add-ons;addon-google_apis-google-17                                                      | 4            | Google APIs                                                         
  add-ons;addon-google_apis-google-18                                                      | 4            | Google APIs                                                         
  add-ons;addon-google_apis-google-19                                                      | 20           | Google APIs                                                         
  add-ons;addon-google_apis-google-21                                                      | 1            | Google APIs                                                         
  add-ons;addon-google_apis-google-22                                                      | 1            | Google APIs                                                         
  add-ons;addon-google_apis-google-23                                                      | 1            | Google APIs                                                         
  add-ons;addon-google_apis-google-24                                                      | 1            | Google APIs                                                         
  build-tools;19.1.0                                                                       | 19.1.0       | Android SDK Build-Tools 19.1                                        
  build-tools;20.0.0                                                                       | 20.0.0       | Android SDK Build-Tools 20                                          
  build-tools;21.1.2                                                                       | 21.1.2       | Android SDK Build-Tools 21.1.2                                      
  build-tools;22.0.1                                                                       | 22.0.1       | Android SDK Build-Tools 22.0.1                                      
  build-tools;23.0.1                                                                       | 23.0.1       | Android SDK Build-Tools 23.0.1                                      
  build-tools;23.0.2                                                                       | 23.0.2       | Android SDK Build-Tools 23.0.2                                      
  build-tools;23.0.3                                                                       | 23.0.3       | Android SDK Build-Tools 23.0.3                                      
  build-tools;24.0.0                                                                       | 24.0.0       | Android SDK Build-Tools 24                                          
  build-tools;24.0.1                                                                       | 24.0.1       | Android SDK Build-Tools 24.0.1                                      
  build-tools;24.0.2                                                                       | 24.0.2       | Android SDK Build-Tools 24.0.2                                      
  build-tools;24.0.3                                                                       | 24.0.3       | Android SDK Build-Tools 24.0.3                                      
  build-tools;25.0.0                                                                       | 25.0.0       | Android SDK Build-Tools 25                                          
  build-tools;25.0.1                                                                       | 25.0.1       | Android SDK Build-Tools 25.0.1                                      
  build-tools;25.0.2                                                                       | 25.0.2       | Android SDK Build-Tools 25.0.2                                      
  build-tools;25.0.3                                                                       | 25.0.3       | Android SDK Build-Tools 25.0.3                                      
  build-tools;26.0.0                                                                       | 26.0.0       | Android SDK Build-Tools 26                                          
  build-tools;26.0.1                                                                       | 26.0.1       | Android SDK Build-Tools 26.0.1                                      
  build-tools;26.0.2                                                                       | 26.0.2       | Android SDK Build-Tools 26.0.2                                      
  build-tools;26.0.3                                                                       | 26.0.3       | Android SDK Build-Tools 26.0.3                                      
  build-tools;27.0.0                                                                       | 27.0.0       | Android SDK Build-Tools 27                                          
  build-tools;27.0.1                                                                       | 27.0.1       | Android SDK Build-Tools 27.0.1                                      
  build-tools;27.0.2                                                                       | 27.0.2       | Android SDK Build-Tools 27.0.2                                      
  build-tools;27.0.3                                                                       | 27.0.3       | Android SDK Build-Tools 27.0.3                                      
  build-tools;28.0.0                                                                       | 28.0.0       | Android SDK Build-Tools 28                                          
  build-tools;28.0.1                                                                       | 28.0.1       | Android SDK Build-Tools 28.0.1                                      
  build-tools;28.0.2                                                                       | 28.0.2       | Android SDK Build-Tools 28.0.2                                      
  build-tools;28.0.3                                                                       | 28.0.3       | Android SDK Build-Tools 28.0.3                                      
  build-tools;29.0.0                                                                       | 29.0.0       | Android SDK Build-Tools 29                                          
  build-tools;29.0.1                                                                       | 29.0.1       | Android SDK Build-Tools 29.0.1                                      
  build-tools;29.0.2                                                                       | 29.0.2       | Android SDK Build-Tools 29.0.2                                      
  build-tools;29.0.3                                                                       | 29.0.3       | Android SDK Build-Tools 29.0.3                                      
  build-tools;30.0.0                                                                       | 30.0.0       | Android SDK Build-Tools 30                                          
  build-tools;30.0.1                                                                       | 30.0.1       | Android SDK Build-Tools 30.0.1                                      
  build-tools;30.0.2                                                                       | 30.0.2       | Android SDK Build-Tools 30.0.2                                      
  build-tools;30.0.3                                                                       | 30.0.3       | Android SDK Build-Tools 30.0.3                                      
  build-tools;31.0.0                                                                       | 31.0.0       | Android SDK Build-Tools 31                                          
  cmake;3.10.2.4988404                                                                     | 3.10.2       | CMake 3.10.2.4988404                                                
  cmake;3.18.1                                                                             | 3.18.1       | CMake 3.18.1                                                        
  cmake;3.6.4111459                                                                        | 3.6.4111459  | CMake 3.6.4111459                                                   
  cmdline-tools;1.0                                                                        | 1.0          | Android SDK Command-line Tools                                      
  cmdline-tools;2.1                                                                        | 2.1          | Android SDK Command-line Tools                                      
  cmdline-tools;3.0                                                                        | 3.0          | Android SDK Command-line Tools                                      
  cmdline-tools;4.0                                                                        | 4.0          | Android SDK Command-line Tools                                      
  cmdline-tools;5.0                                                                        | 5.0          | Android SDK Command-line Tools                                      
  cmdline-tools;latest                                                                     | 5.0          | Android SDK Command-line Tools (latest)                             
  emulator                                                                                 | 30.8.4       | Android Emulator                                                    
  extras;android;m2repository                                                              | 47.0.0       | Android Support Repository                                          
  extras;google;auto                                                                       | 1.1          | Android Auto Desktop Head Unit Emulator                             
  extras;google;google_play_services                                                       | 49           | Google Play services                                                
  extras;google;instantapps                                                                | 1.9.0        | Google Play Instant Development SDK                                 
  extras;google;m2repository                                                               | 58           | Google Repository                                                   
  extras;google;market_apk_expansion                                                       | 1            | Google Play APK Expansion library                                   
  extras;google;market_licensing                                                           | 1            | Google Play Licensing Library                                       
  extras;google;simulators                                                                 | 1            | Android Auto API Simulators                                         
  extras;google;webdriver                                                                  | 2            | Google Web Driver                                                   
  extras;m2repository;com;android;support;constraint;constraint-layout-solver;1.0.0        | 1            | Solver for ConstraintLayout 1.0.0                                   
  extras;m2repository;com;android;support;constraint;constraint-layout-solver;1.0.0-alpha4 | 1            | com.android.support.constraint:constraint-layout-solver:1.0.0-alpha4
  extras;m2repository;com;android;support;constraint;constraint-layout-solver;1.0.0-alpha8 | 1            | Solver for ConstraintLayout 1.0.0-alpha8                            
  extras;m2repository;com;android;support;constraint;constraint-layout-solver;1.0.0-beta1  | 1            | Solver for ConstraintLayout 1.0.0-beta1                             
  extras;m2repository;com;android;support;constraint;constraint-layout-solver;1.0.0-beta2  | 1            | Solver for ConstraintLayout 1.0.0-beta2                             
  extras;m2repository;com;android;support;constraint;constraint-layout-solver;1.0.0-beta3  | 1            | Solver for ConstraintLayout 1.0.0-beta3                             
  extras;m2repository;com;android;support;constraint;constraint-layout-solver;1.0.0-beta4  | 1            | Solver for ConstraintLayout 1.0.0-beta4                             
  extras;m2repository;com;android;support;constraint;constraint-layout-solver;1.0.0-beta5  | 1            | Solver for ConstraintLayout 1.0.0-beta5                             
  extras;m2repository;com;android;support;constraint;constraint-layout-solver;1.0.1        | 1            | Solver for ConstraintLayout 1.0.1                                   
  extras;m2repository;com;android;support;constraint;constraint-layout-solver;1.0.2        | 1            | Solver for ConstraintLayout 1.0.2                                   
  extras;m2repository;com;android;support;constraint;constraint-layout;1.0.0               | 1            | ConstraintLayout for Android 1.0.0                                  
  extras;m2repository;com;android;support;constraint;constraint-layout;1.0.0-alpha4        | 1            | com.android.support.constraint:constraint-layout:1.0.0-alpha4       
  extras;m2repository;com;android;support;constraint;constraint-layout;1.0.0-alpha8        | 1            | ConstraintLayout for Android 1.0.0-alpha8                           
  extras;m2repository;com;android;support;constraint;constraint-layout;1.0.0-beta1         | 1            | ConstraintLayout for Android 1.0.0-beta1                            
  extras;m2repository;com;android;support;constraint;constraint-layout;1.0.0-beta2         | 1            | ConstraintLayout for Android 1.0.0-beta2                            
  extras;m2repository;com;android;support;constraint;constraint-layout;1.0.0-beta3         | 1            | ConstraintLayout for Android 1.0.0-beta3                            
  extras;m2repository;com;android;support;constraint;constraint-layout;1.0.0-beta4         | 1            | ConstraintLayout for Android 1.0.0-beta4                            
  extras;m2repository;com;android;support;constraint;constraint-layout;1.0.0-beta5         | 1            | ConstraintLayout for Android 1.0.0-beta5                            
  extras;m2repository;com;android;support;constraint;constraint-layout;1.0.1               | 1            | ConstraintLayout for Android 1.0.1                                  
  extras;m2repository;com;android;support;constraint;constraint-layout;1.0.2               | 1            | ConstraintLayout for Android 1.0.2                                  
  ndk-bundle                                                                               | 22.1.7171670 | NDK                                                                 
  ndk;16.1.4479499                                                                         | 16.1.4479499 | NDK (Side by side) 16.1.4479499                                     
  ndk;17.2.4988734                                                                         | 17.2.4988734 | NDK (Side by side) 17.2.4988734                                     
  ndk;18.1.5063045                                                                         | 18.1.5063045 | NDK (Side by side) 18.1.5063045                                     
  ndk;19.2.5345600                                                                         | 19.2.5345600 | NDK (Side by side) 19.2.5345600                                     
  ndk;20.0.5594570                                                                         | 20.0.5594570 | NDK (Side by side) 20.0.5594570                                     
  ndk;20.1.5948944                                                                         | 20.1.5948944 | NDK (Side by side) 20.1.5948944                                     
  ndk;21.0.6113669                                                                         | 21.0.6113669 | NDK (Side by side) 21.0.6113669                                     
  ndk;21.1.6352462                                                                         | 21.1.6352462 | NDK (Side by side) 21.1.6352462                                     
  ndk;21.2.6472646                                                                         | 21.2.6472646 | NDK (Side by side) 21.2.6472646                                     
  ndk;21.3.6528147                                                                         | 21.3.6528147 | NDK (Side by side) 21.3.6528147                                     
  ndk;21.4.7075529                                                                         | 21.4.7075529 | NDK (Side by side) 21.4.7075529                                     
  ndk;22.0.7026061                                                                         | 22.0.7026061 | NDK (Side by side) 22.0.7026061                                     
  ndk;22.1.7171670                                                                         | 22.1.7171670 | NDK (Side by side) 22.1.7171670                                     
  ndk;23.0.7599858                                                                         | 23.0.7599858 | NDK (Side by side) 23.0.7599858                                     
  patcher;v4                                                                               | 1            | SDK Patch Applier v4                                                
  platform-tools                                                                           | 31.0.3       | Android SDK Platform-Tools                                          
  platforms;android-10                                                                     | 2            | Android SDK Platform 10                                             
  platforms;android-11                                                                     | 2            | Android SDK Platform 11                                             
  platforms;android-12                                                                     | 3            | Android SDK Platform 12                                             
  platforms;android-13                                                                     | 1            | Android SDK Platform 13                                             
  platforms;android-14                                                                     | 4            | Android SDK Platform 14                                             
  platforms;android-15                                                                     | 5            | Android SDK Platform 15                                             
  platforms;android-16                                                                     | 5            | Android SDK Platform 16                                             
  platforms;android-17                                                                     | 3            | Android SDK Platform 17                                             
  platforms;android-18                                                                     | 3            | Android SDK Platform 18                                             
  platforms;android-19                                                                     | 4            | Android SDK Platform 19                                             
  platforms;android-20                                                                     | 2            | Android SDK Platform 20                                             
  platforms;android-21                                                                     | 2            | Android SDK Platform 21                                             
  platforms;android-22                                                                     | 2            | Android SDK Platform 22                                             
  platforms;android-23                                                                     | 3            | Android SDK Platform 23                                             
  platforms;android-24                                                                     | 2            | Android SDK Platform 24                                             
  platforms;android-25                                                                     | 3            | Android SDK Platform 25                                             
  platforms;android-26                                                                     | 2            | Android SDK Platform 26                                             
  platforms;android-27                                                                     | 3            | Android SDK Platform 27                                             
  platforms;android-28                                                                     | 6            | Android SDK Platform 28                                             
  platforms;android-29                                                                     | 5            | Android SDK Platform 29                                             
  platforms;android-30                                                                     | 3            | Android SDK Platform 30                                             
  platforms;android-31                                                                     | 1            | Android SDK Platform 31                                             
  platforms;android-7                                                                      | 3            | Android SDK Platform 7                                              
  platforms;android-8                                                                      | 3            | Android SDK Platform 8                                              
  platforms;android-9                                                                      | 2            | Android SDK Platform 9                                              
  skiaparser;1                                                                             | 6            | Layout Inspector image server for API 29-30                         
  skiaparser;2                                                                             | 3            | Layout Inspector image server for API S                             
  sources;android-15                                                                       | 2            | Sources for Android 15                                              
  sources;android-16                                                                       | 2            | Sources for Android 16                                              
  sources;android-17                                                                       | 1            | Sources for Android 17                                              
  sources;android-18                                                                       | 1            | Sources for Android 18                                              
  sources;android-19                                                                       | 2            | Sources for Android 19                                              
  sources;android-20                                                                       | 1            | Sources for Android 20                                              
  sources;android-21                                                                       | 1            | Sources for Android 21                                              
  sources;android-22                                                                       | 1            | Sources for Android 22                                              
  sources;android-23                                                                       | 1            | Sources for Android 23                                              
  sources;android-24                                                                       | 1            | Sources for Android 24                                              
  sources;android-25                                                                       | 1            | Sources for Android 25                                              
  sources;android-26                                                                       | 1            | Sources for Android 26                                              
  sources;android-27                                                                       | 1            | Sources for Android 27                                              
  sources;android-28                                                                       | 1            | Sources for Android 28                                              
  sources;android-29                                                                       | 1            | Sources for Android 29                                              
  sources;android-30                                                                       | 1            | Sources for Android 30                                              
  system-images;android-10;default;armeabi-v7a                                             | 5            | ARM EABI v7a System Image                                           
  system-images;android-10;default;x86                                                     | 5            | Intel x86 Atom System Image                                         
  system-images;android-10;google_apis;armeabi-v7a                                         | 6            | Google APIs ARM EABI v7a System Image                               
  system-images;android-10;google_apis;x86                                                 | 6            | Google APIs Intel x86 Atom System Image                             
  system-images;android-14;default;armeabi-v7a                                             | 2            | ARM EABI v7a System Image                                           
  system-images;android-15;default;armeabi-v7a                                             | 5            | ARM EABI v7a System Image                                           
  system-images;android-15;default;x86                                                     | 7            | Intel x86 Atom System Image                                         
  system-images;android-15;google_apis;armeabi-v7a                                         | 6            | Google APIs ARM EABI v7a System Image                               
  system-images;android-15;google_apis;x86                                                 | 7            | Google APIs Intel x86 Atom System Image                             
  system-images;android-16;default;armeabi-v7a                                             | 6            | ARM EABI v7a System Image                                           
  system-images;android-16;default;mips                                                    | 1            | MIPS System Image                                                   
  system-images;android-16;default;x86                                                     | 7            | Intel x86 Atom System Image                                         
  system-images;android-16;google_apis;armeabi-v7a                                         | 6            | Google APIs ARM EABI v7a System Image                               
  system-images;android-16;google_apis;x86                                                 | 7            | Google APIs Intel x86 Atom System Image                             
  system-images;android-17;default;armeabi-v7a                                             | 6            | ARM EABI v7a System Image                                           
  system-images;android-17;default;mips                                                    | 1            | MIPS System Image                                                   
  system-images;android-17;default;x86                                                     | 7            | Intel x86 Atom System Image                                         
  system-images;android-17;google_apis;armeabi-v7a                                         | 6            | Google APIs ARM EABI v7a System Image                               
  system-images;android-17;google_apis;x86                                                 | 7            | Google APIs Intel x86 Atom System Image                             
  system-images;android-18;default;armeabi-v7a                                             | 5            | ARM EABI v7a System Image                                           
  system-images;android-18;default;x86                                                     | 4            | Intel x86 Atom System Image                                         
  system-images;android-18;google_apis;armeabi-v7a                                         | 6            | Google APIs ARM EABI v7a System Image                               
  system-images;android-18;google_apis;x86                                                 | 6            | Google APIs Intel x86 Atom System Image                             
  system-images;android-19;default;armeabi-v7a                                             | 5            | ARM EABI v7a System Image                                           
  system-images;android-19;default;x86                                                     | 6            | Intel x86 Atom System Image                                         
  system-images;android-19;google_apis;armeabi-v7a                                         | 40           | Google APIs ARM EABI v7a System Image                               
  system-images;android-19;google_apis;x86                                                 | 40           | Google APIs Intel x86 Atom System Image                             
  system-images;android-21;android-tv;armeabi-v7a                                          | 3            | Android TV ARM EABI v7a System Image                                
  system-images;android-21;android-tv;x86                                                  | 3            | Android TV Intel x86 Atom System Image                              
  system-images;android-21;default;armeabi-v7a                                             | 4            | ARM EABI v7a System Image                                           
  system-images;android-21;default;x86                                                     | 5            | Intel x86 Atom System Image                                         
  system-images;android-21;default;x86_64                                                  | 5            | Intel x86 Atom_64 System Image                                      
  system-images;android-21;google_apis;armeabi-v7a                                         | 32           | Google APIs ARM EABI v7a System Image                               
  system-images;android-21;google_apis;x86                                                 | 32           | Google APIs Intel x86 Atom System Image                             
  system-images;android-21;google_apis;x86_64                                              | 32           | Google APIs Intel x86 Atom_64 System Image                          
  system-images;android-22;android-tv;x86                                                  | 3            | Android TV Intel x86 Atom System Image                              
  system-images;android-22;default;armeabi-v7a                                             | 2            | ARM EABI v7a System Image                                           
  system-images;android-22;default;x86                                                     | 6            | Intel x86 Atom System Image                                         
  system-images;android-22;default;x86_64                                                  | 6            | Intel x86 Atom_64 System Image                                      
  system-images;android-22;google_apis;armeabi-v7a                                         | 26           | Google APIs ARM EABI v7a System Image                               
  system-images;android-22;google_apis;x86                                                 | 26           | Google APIs Intel x86 Atom System Image                             
  system-images;android-22;google_apis;x86_64                                              | 26           | Google APIs Intel x86 Atom_64 System Image                          
  system-images;android-23;android-tv;armeabi-v7a                                          | 12           | Android TV ARM EABI v7a System Image                                
  system-images;android-23;android-tv;x86                                                  | 21           | Android TV Intel x86 Atom System Image                              
  system-images;android-23;android-wear;armeabi-v7a                                        | 6            | Android Wear ARM EABI v7a System Image                              
  system-images;android-23;android-wear;x86                                                | 6            | Android Wear Intel x86 Atom System Image                            
  system-images;android-23;default;armeabi-v7a                                             | 6            | ARM EABI v7a System Image                                           
  system-images;android-23;default;x86                                                     | 10           | Intel x86 Atom System Image                                         
  system-images;android-23;default;x86_64                                                  | 10           | Intel x86 Atom_64 System Image                                      
  system-images;android-23;google_apis;armeabi-v7a                                         | 33           | Google APIs ARM EABI v7a System Image                               
  system-images;android-23;google_apis;x86                                                 | 33           | Google APIs Intel x86 Atom System Image                             
  system-images;android-23;google_apis;x86_64                                              | 33           | Google APIs Intel x86 Atom_64 System Image                          
  system-images;android-24;android-tv;x86                                                  | 22           | Android TV Intel x86 Atom System Image                              
  system-images;android-24;default;arm64-v8a                                               | 7            | ARM 64 v8a System Image                                             
  system-images;android-24;default;armeabi-v7a                                             | 7            | ARM EABI v7a System Image                                           
  system-images;android-24;default;x86                                                     | 8            | Intel x86 Atom System Image                                         
  system-images;android-24;default;x86_64                                                  | 8            | Intel x86 Atom_64 System Image                                      
  system-images;android-24;google_apis;arm64-v8a                                           | 27           | Google APIs ARM 64 v8a System Image                                 
  system-images;android-24;google_apis;x86                                                 | 27           | Google APIs Intel x86 Atom System Image                             
  system-images;android-24;google_apis;x86_64                                              | 27           | Google APIs Intel x86 Atom_64 System Image                          
  system-images;android-24;google_apis_playstore;x86                                       | 19           | Google Play Intel x86 Atom System Image                             
  system-images;android-25;android-tv;x86                                                  | 16           | Android TV Intel x86 Atom System Image                              
  system-images;android-25;android-wear-cn;armeabi-v7a                                     | 4            | China version of Android Wear ARM EABI v7a System Image             
  system-images;android-25;android-wear-cn;x86                                             | 4            | China version of Android Wear Intel x86 Atom System Image           
  system-images;android-25;android-wear;armeabi-v7a                                        | 3            | Android Wear ARM EABI v7a System Image                              
  system-images;android-25;android-wear;x86                                                | 3            | Android Wear Intel x86 Atom System Image                            
  system-images;android-25;default;x86                                                     | 1            | Intel x86 Atom System Image                                         
  system-images;android-25;default;x86_64                                                  | 1            | Intel x86 Atom_64 System Image                                      
  system-images;android-25;google_apis;arm64-v8a                                           | 18           | Google APIs ARM 64 v8a System Image                                 
  system-images;android-25;google_apis;armeabi-v7a                                         | 18           | Google APIs ARM EABI v7a System Image                               
  system-images;android-25;google_apis;x86                                                 | 18           | Google APIs Intel x86 Atom System Image                             
  system-images;android-25;google_apis;x86_64                                              | 18           | Google APIs Intel x86 Atom_64 System Image                          
  system-images;android-25;google_apis_playstore;x86                                       | 9            | Google Play Intel x86 Atom System Image                             
  system-images;android-26;android-tv;x86                                                  | 14           | Android TV Intel x86 Atom System Image                              
  system-images;android-26;android-wear-cn;x86                                             | 4            | China version of Android Wear Intel x86 Atom System Image           
  system-images;android-26;android-wear;x86                                                | 4            | Android Wear Intel x86 Atom System Image                            
  system-images;android-26;default;x86                                                     | 1            | Intel x86 Atom System Image                                         
  system-images;android-26;default;x86_64                                                  | 1            | Intel x86 Atom_64 System Image                                      
  system-images;android-26;google_apis;x86                                                 | 16           | Google APIs Intel x86 Atom System Image                             
  system-images;android-26;google_apis;x86_64                                              | 16           | Google APIs Intel x86 Atom_64 System Image                          
  system-images;android-26;google_apis_playstore;x86                                       | 7            | Google Play Intel x86 Atom System Image                             
  system-images;android-27;android-tv;x86                                                  | 9            | Android TV Intel x86 Atom System Image                              
  system-images;android-27;default;x86                                                     | 1            | Intel x86 Atom System Image                                         
  system-images;android-27;default;x86_64                                                  | 1            | Intel x86 Atom_64 System Image                                      
  system-images;android-27;google_apis;x86                                                 | 11           | Google APIs Intel x86 Atom System Image                             
  system-images;android-27;google_apis_playstore;x86                                       | 3            | Google Play Intel x86 Atom System Image                             
  system-images;android-28;android-tv;x86                                                  | 10           | Android TV Intel x86 Atom System Image                              
  system-images;android-28;android-wear-cn;x86                                             | 6            | China version of Wear OS Intel x86 Atom System Image                
  system-images;android-28;android-wear;x86                                                | 6            | Wear OS Intel x86 Atom System Image                                 
  system-images;android-28;default;x86                                                     | 4            | Intel x86 Atom System Image                                         
  system-images;android-28;default;x86_64                                                  | 4            | Intel x86 Atom_64 System Image                                      
  system-images;android-28;google_apis;x86                                                 | 12           | Google APIs Intel x86 Atom System Image                             
  system-images;android-28;google_apis;x86_64                                              | 11           | Google APIs Intel x86 Atom_64 System Image                          
  system-images;android-28;google_apis_playstore;x86                                       | 9            | Google Play Intel x86 Atom System Image                             
  system-images;android-28;google_apis_playstore;x86_64                                    | 8            | Google Play Intel x86 Atom_64 System Image                          
  system-images;android-29;android-tv;x86                                                  | 3            | Android TV Intel x86 Atom System Image                              
  system-images;android-29;default;x86                                                     | 8            | Intel x86 Atom System Image                                         
  system-images;android-29;default;x86_64                                                  | 8            | Intel x86 Atom_64 System Image                                      
  system-images;android-29;google_apis;arm64-v8a                                           | 12           | Google APIs ARM 64 v8a System Image                                 
  system-images;android-29;google_apis;x86                                                 | 12           | Google APIs Intel x86 Atom System Image                             
  system-images;android-29;google_apis;x86_64                                              | 12           | Google APIs Intel x86 Atom_64 System Image                          
  system-images;android-29;google_apis_playstore;arm64-v8a                                 | 9            | Google Play ARM 64 v8a System Image                                 
  system-images;android-29;google_apis_playstore;x86                                       | 8            | Google Play Intel x86 Atom System Image                             
  system-images;android-29;google_apis_playstore;x86_64                                    | 8            | Google Play Intel x86 Atom_64 System Image                          
  system-images;android-30;android-tv;x86                                                  | 3            | Android TV Intel x86 Atom System Image                              
  system-images;android-30;android-wear-cn;x86                                             | 4            | China version of Wear OS - Preview Intel x86 Atom System Image      
  system-images;android-30;android-wear;x86                                                | 4            | Wear OS - Preview Intel x86 Atom System Image                       
  system-images;android-30;google-tv;x86                                                   | 3            | Google TV Intel x86 Atom System Image                               
  system-images;android-30;google_apis;arm64-v8a                                           | 11           | Google APIs ARM 64 v8a System Image                                 
  system-images;android-30;google_apis;x86                                                 | 10           | Google APIs Intel x86 Atom System Image                             
  system-images;android-30;google_apis;x86_64                                              | 10           | Google APIs Intel x86 Atom_64 System Image                          
  system-images;android-30;google_apis_playstore;arm64-v8a                                 | 10           | Google Play ARM 64 v8a System Image                                 
  system-images;android-30;google_apis_playstore;x86                                       | 9            | Google Play Intel x86 Atom System Image                             
  system-images;android-30;google_apis_playstore;x86_64                                    | 10           | Google Play Intel x86 Atom_64 System Image                          
  system-images;android-31;google_apis;arm64-v8a                                           | 8            | Google APIs ARM 64 v8a System Image                                 
  system-images;android-31;google_apis;x86_64                                              | 8            | Google APIs Intel x86 Atom_64 System Image                          
  system-images;android-31;google_apis_playstore;arm64-v8a                                 | 8            | Google Play ARM 64 v8a System Image                                 
  system-images;android-31;google_apis_playstore;x86_64                                    | 8            | Google Play Intel x86 Atom_64 System Image                          

Available Updates:
  ID      | Installed | Available
  ------- | -------   | -------  

# Check that aidl can be executed
# Search for Aidl
# Run '/home/vitit/.buildozer/android/platform/android-sdk/build-tools/31.0.0/aidl'
# Cwd None
# Downloading platform api target if necessary
# Android packages installation done.
# Read available permissions from api-versions.xml
# Check application requirements
# Check garden requirements
# Compile platform
# Run '/home/vitit/miniconda3/envs/kivy-env/bin/python -m pythonforandroid.toolchain create --dist_name=myapp --bootstrap=sdl2 --requirements=python3,kivy,matplotlib --arch armeabi-v7a --copy-libs --color=always --storage-dir="/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a" --ndk-api=21'
# Cwd /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Will compile for the following archs: armeabi-v7a
[INFO]:    Found Android API target in $ANDROIDAPI: 27
[INFO]:    Available Android APIs are (27)
[INFO]:    Requested API target 27 is available, continuing.
[INFO]:    Found NDK dir in $ANDROIDNDK: /home/vitit/.buildozer/android/platform/android-ndk-r19c
[INFO]:    Found NDK version 19c
[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.
[INFO]:    Found the following toolchain versions: ['4.9']
[INFO]:    Picking the latest gcc toolchain, here 4.9
[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: ['freetype', 'hostpython3', 'libffi', 'openssl', 'png', 'sdl2_image', 'sdl2_mixer', 'sdl2_ttf', 'sqlite3', 'python3', 'sdl2', 'setuptools', 'cppy', 'cython', 'six', 'kiwisolver', 'numpy', 'pyjnius', 'android', 'kivy', 'matplotlib']
[INFO]:    The selected bootstrap is sdl2
[INFO]:    # Creating dist with sdl2 bootstrap
[INFO]:    Dist will have name myapp and requirements (python3, kivy, matplotlib)
[INFO]:    Dist contains the following requirements as recipes: ['freetype', 'hostpython3', 'libffi', 'openssl', 'png', 'sdl2_image', 'sdl2_mixer', 'sdl2_ttf', 'sqlite3', 'python3', 'sdl2', 'setuptools', 'cppy', 'cython', 'six', 'kiwisolver', 'numpy', 'pyjnius', 'android', 'kivy', 'matplotlib']
[INFO]:    Dist will also contain modules (cycler, pyparsing, certifi, python-dateutil) installed from pip
[INFO]:    Dist will be build in mode debug
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Recipe build order is ['freetype', 'hostpython3', 'libffi', 'openssl', 'png', 'sdl2_image', 'sdl2_mixer', 'sdl2_ttf', 'sqlite3', 'python3', 'sdl2', 'setuptools', 'cppy', 'cython', 'six', 'kiwisolver', 'numpy', 'pyjnius', 'android', 'kivy', 'matplotlib']
[INFO]:    The requirements (certifi, cycler, pyparsing, python-dateutil) were not found as recipes, they will be installed with pip.
[INFO]:    # Downloading recipes 
[INFO]:    Downloading freetype
[INFO]:    -> running mkdir -p /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armea...(and 24 more)
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/packages/freetype
[INFO]:    -> running basename http://download.savannah.gnu.org/releases/freetype/freetype-2.10.1.tar.gz
[INFO]:    -> running rm -f .mark-freetype-2.10.1.tar.gz
[INFO]:    Downloading freetype from http://download.savannah.gnu.org/releases/freetype/freetype-2.10.1.tar.gz
[INFO]:    -> running touch .mark-freetype-2.10.1.tar.gz
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Downloading hostpython3
[INFO]:    -> running mkdir -p /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armea...(and 27 more)
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/packages/hostpython3
[INFO]:    -> running basename https://www.python.org/ftp/python/3.8.9/Python-3.8.9.tgz
[INFO]:    -> running rm -f .mark-Python-3.8.9.tgz
[INFO]:    Downloading hostpython3 from https://www.python.org/ftp/python/3.8.9/Python-3.8.9.tgz
[INFO]:    -> running touch .mark-Python-3.8.9.tgz
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Downloading libffi
[INFO]:    -> running mkdir -p /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armea...(and 22 more)
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/packages/libffi
[INFO]:    -> running basename https://github.com/libffi/libffi/archive/v3.3.tar.gz
[INFO]:    -> running rm -f .mark-v3.3.tar.gz
[INFO]:    Downloading libffi from https://github.com/libffi/libffi/archive/v3.3.tar.gz
[INFO]:    -> running touch .mark-v3.3.tar.gz
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Downloading openssl
[INFO]:    -> running mkdir -p /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armea...(and 23 more)
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/packages/openssl
[INFO]:    -> running basename https://www.openssl.org/source/openssl-1.1.1k.tar.gz
[INFO]:    -> running rm -f .mark-openssl-1.1.1k.tar.gz
[INFO]:    Downloading openssl from https://www.openssl.org/source/openssl-1.1.1k.tar.gz
[INFO]:    -> running touch .mark-openssl-1.1.1k.tar.gz
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Downloading png
[INFO]:    -> running mkdir -p /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armea...(and 19 more)
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/packages/png
[INFO]:    -> running basename https://github.com/glennrp/libpng/archive/v1.6.37.zip
[INFO]:    -> running rm -f .mark-v1.6.37.zip
[INFO]:    Downloading png from https://github.com/glennrp/libpng/archive/v1.6.37.zip
[INFO]:    -> running touch .mark-v1.6.37.zip
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Downloading sdl2_image
[INFO]:    -> running mkdir -p /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armea...(and 26 more)
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/packages/sdl2_image
[INFO]:    -> running basename https://www.libsdl.org/projects/SDL_image/release/SDL2_image-2.0.4.tar.gz
[INFO]:    -> running rm -f .mark-SDL2_image-2.0.4.tar.gz
[INFO]:    Downloading sdl2_image from https://www.libsdl.org/projects/SDL_image/release/SDL2_image-2.0.4.tar.gz
[INFO]:    -> running touch .mark-SDL2_image-2.0.4.tar.gz
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Downloading sdl2_mixer
[INFO]:    -> running mkdir -p /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armea...(and 26 more)
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/packages/sdl2_mixer
[INFO]:    -> running basename https://www.libsdl.org/projects/SDL_mixer/release/SDL2_mixer-2.0.4.tar.gz
[INFO]:    -> running rm -f .mark-SDL2_mixer-2.0.4.tar.gz
[INFO]:    Downloading sdl2_mixer from https://www.libsdl.org/projects/SDL_mixer/release/SDL2_mixer-2.0.4.tar.gz
[INFO]:    -> running touch .mark-SDL2_mixer-2.0.4.tar.gz
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Downloading sdl2_ttf
[INFO]:    -> running mkdir -p /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armea...(and 24 more)
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/packages/sdl2_ttf
[INFO]:    -> running basename https://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-2.0.15.tar.gz
[INFO]:    -> running rm -f .mark-SDL2_ttf-2.0.15.tar.gz
[INFO]:    Downloading sdl2_ttf from https://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-2.0.15.tar.gz
[INFO]:    -> running touch .mark-SDL2_ttf-2.0.15.tar.gz
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Downloading sqlite3
[INFO]:    -> running mkdir -p /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armea...(and 23 more)
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/packages/sqlite3
[INFO]:    -> running basename https://www.sqlite.org/2021/sqlite-amalgamation-3350500.zip
[INFO]:    -> running rm -f .mark-sqlite-amalgamation-3350500.zip
[INFO]:    Downloading sqlite3 from https://www.sqlite.org/2021/sqlite-amalgamation-3350500.zip
[INFO]:    -> running touch .mark-sqlite-amalgamation-3350500.zip
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Downloading python3
[INFO]:    -> running mkdir -p /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armea...(and 23 more)
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/packages/python3
[INFO]:    -> running basename https://www.python.org/ftp/python/3.8.9/Python-3.8.9.tgz
[INFO]:    -> running rm -f .mark-Python-3.8.9.tgz
[INFO]:    Downloading python3 from https://www.python.org/ftp/python/3.8.9/Python-3.8.9.tgz
[INFO]:    -> running touch .mark-Python-3.8.9.tgz
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Downloading sdl2
[INFO]:    -> running mkdir -p /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armea...(and 20 more)
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/packages/sdl2
[INFO]:    -> running basename https://www.libsdl.org/release/SDL2-2.0.9.tar.gz
[INFO]:    -> running rm -f .mark-SDL2-2.0.9.tar.gz
[INFO]:    Downloading sdl2 from https://www.libsdl.org/release/SDL2-2.0.9.tar.gz
[INFO]:    -> running touch .mark-SDL2-2.0.9.tar.gz
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Downloading setuptools
[INFO]:    -> running mkdir -p /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armea...(and 26 more)
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/packages/setuptools
[INFO]:    -> running basename https://pypi.python.org/packages/source/s/setuptools/setuptools-51.3.3.tar.gz
[INFO]:    -> 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]:    -> running touch .mark-setuptools-51.3.3.tar.gz
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Downloading cppy
[INFO]:    -> running mkdir -p /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armea...(and 20 more)
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/packages/cppy
[INFO]:    -> running basename https://github.com/nucleic/cppy/archive/4e0b956.zip
[INFO]:    -> running rm -f .mark-4e0b956.zip
[INFO]:    Downloading cppy from https://github.com/nucleic/cppy/archive/4e0b956.zip
[INFO]:    -> running touch .mark-4e0b956.zip
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Downloading cython
[INFO]:    -> running mkdir -p /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armea...(and 22 more)
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/packages/cython
[INFO]:    -> running basename https://github.com/cython/cython/archive/0.29.15.tar.gz
[INFO]:    -> running rm -f .mark-0.29.15.tar.gz
[INFO]:    Downloading cython from https://github.com/cython/cython/archive/0.29.15.tar.gz
[INFO]:    -> running touch .mark-0.29.15.tar.gz
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Downloading six
[INFO]:    -> running mkdir -p /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armea...(and 19 more)
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/packages/six
[INFO]:    -> running basename https://pypi.python.org/packages/source/s/six/six-1.15.0.tar.gz
[INFO]:    -> 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]:    -> running touch .mark-six-1.15.0.tar.gz
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Downloading kiwisolver
[INFO]:    -> running mkdir -p /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armea...(and 26 more)
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/packages/kiwisolver
[INFO]:    -> running basename https://github.com/nucleic/kiwi/archive/0846189.zip
[INFO]:    -> running rm -f .mark-0846189.zip
[INFO]:    Downloading kiwisolver from https://github.com/nucleic/kiwi/archive/0846189.zip
[INFO]:    -> running touch .mark-0846189.zip
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Downloading numpy
[INFO]:    -> running mkdir -p /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armea...(and 21 more)
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/packages/numpy
[INFO]:    -> running basename https://pypi.python.org/packages/source/n/numpy/numpy-1.18.1.zip
[INFO]:    -> running rm -f .mark-numpy-1.18.1.zip
[INFO]:    Downloading numpy from https://pypi.python.org/packages/source/n/numpy/numpy-1.18.1.zip
[INFO]:    -> running touch .mark-numpy-1.18.1.zip
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Downloading pyjnius
[INFO]:    -> running mkdir -p /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armea...(and 23 more)
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/packages/pyjnius
[INFO]:    -> running basename https://github.com/kivy/pyjnius/archive/1.3.0.zip
[INFO]:    -> running rm -f .mark-1.3.0.zip
[INFO]:    Downloading pyjnius from https://github.com/kivy/pyjnius/archive/1.3.0.zip
[INFO]:    -> running touch .mark-1.3.0.zip
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Downloading android
[INFO]:    Skipping android download as no URL is set
[INFO]:    Downloading kivy
[INFO]:    -> running mkdir -p /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armea...(and 20 more)
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/packages/kivy
[INFO]:    -> running basename https://github.com/kivy/kivy/archive/2.0.0.zip
[INFO]:    -> running rm -f .mark-2.0.0.zip
[INFO]:    Downloading kivy from https://github.com/kivy/kivy/archive/2.0.0.zip
[INFO]:    -> running touch .mark-2.0.0.zip
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Downloading matplotlib
[INFO]:    -> running mkdir -p /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armea...(and 26 more)
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/packages/matplotlib
[INFO]:    -> running basename https://github.com/matplotlib/matplotlib/archive/v3.1.3.zip
[INFO]:    -> running rm -f .mark-v3.1.3.zip
[INFO]:    Downloading matplotlib from https://github.com/matplotlib/matplotlib/archive/v3.1.3.zip
[INFO]:    -> running touch .mark-v3.1.3.zip
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    # Building all recipes for arch armeabi-v7a
[INFO]:    # Unpacking recipes
[INFO]:    Unpacking freetype for armeabi-v7a
[INFO]:    -> running basename http://download.savannah.gnu.org/releases/freetype/freetype-2.10.1.tar.gz
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/freetype/armeabi-v7a__ndk_target_21
[INFO]:    -> running mv freetype-2.10.1 /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/b...(and 80 more)
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Unpacking hostpython3 for armeabi-v7a
[INFO]:    -> running basename https://www.python.org/ftp/python/3.8.9/Python-3.8.9.tgz
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop
[INFO]:    -> running mv Python-3.8.9 /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/buil...(and 64 more)
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Unpacking libffi for armeabi-v7a
[INFO]:    -> running basename https://github.com/libffi/libffi/archive/v3.3.tar.gz
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/libffi/armeabi-v7a__ndk_target_21
[INFO]:    -> running mv libffi-3.3 /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-...(and 71 more)
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Unpacking openssl for armeabi-v7a
[INFO]:    -> running basename https://www.openssl.org/source/openssl-1.1.1k.tar.gz
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/openssl/armeabi-v7a__ndk_target_21
[INFO]:    -> running mv openssl-1.1.1k /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/bu...(and 80 more)
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Unpacking png for armeabi-v7a
[INFO]:    -> running basename https://github.com/glennrp/libpng/archive/v1.6.37.zip
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/png/armeabi-v7a__ndk_target_21
[INFO]:    -> running mv libpng-1.6.37 /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/bui...(and 68 more)
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Unpacking sdl2_image for armeabi-v7a
[INFO]:    -> running basename https://www.libsdl.org/projects/SDL_image/release/SDL2_image-2.0.4.tar.gz
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni
[INFO]:    -> running mv SDL2_image-2.0.4 /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/...(and 60 more)
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Unpacking sdl2_mixer for armeabi-v7a
[INFO]:    -> running basename https://www.libsdl.org/projects/SDL_mixer/release/SDL2_mixer-2.0.4.tar.gz
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni
[INFO]:    -> running mv SDL2_mixer-2.0.4 /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/...(and 60 more)
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Unpacking sdl2_ttf for armeabi-v7a
[INFO]:    -> running basename https://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-2.0.15.tar.gz
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni
[INFO]:    -> running mv SDL2_ttf-2.0.15 /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/b...(and 57 more)
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Unpacking sqlite3 for armeabi-v7a
[INFO]:    -> running basename https://www.sqlite.org/2021/sqlite-amalgamation-3350500.zip
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/sqlite3/armeabi-v7a__ndk_target_21
[INFO]:    -> running mv sqlite-amalgamation-3350500 /home/vitit/Source/emtf90-kivy-test/.buildozer/androi...(and 90 more)
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Unpacking python3 for armeabi-v7a
[INFO]:    -> running basename https://www.python.org/ftp/python/3.8.9/Python-3.8.9.tgz
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21
[INFO]:    -> running mv Python-3.8.9 /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/buil...(and 75 more)
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Unpacking sdl2 for armeabi-v7a
[INFO]:    -> running basename https://www.libsdl.org/release/SDL2-2.0.9.tar.gz
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni
[INFO]:    -> running mv SDL2-2.0.9 /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-...(and 47 more)
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Unpacking setuptools for armeabi-v7a
[INFO]:    -> running basename https://pypi.python.org/packages/source/s/setuptools/setuptools-51.3.3.tar.gz
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/setuptools/armeabi-v7a__ndk_target_21
[INFO]:    -> running mv setuptools-51.3.3 /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform...(and 86 more)
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Unpacking cppy for armeabi-v7a
[INFO]:    -> running basename https://github.com/nucleic/cppy/archive/4e0b956.zip
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/cppy/armeabi-v7a__ndk_target_21
[INFO]:    -> running mv cppy-4e0b956f016531806e6319dcc6340c611cf9e35c /home/vitit/Source/emtf90-kivy-test...(and 102 more)
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Unpacking cython for armeabi-v7a
[INFO]:    -> running basename https://github.com/cython/cython/archive/0.29.15.tar.gz
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/cython/armeabi-v7a__ndk_target_21
[INFO]:    -> running mv cython-0.29.15 /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/bu...(and 75 more)
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Unpacking six for armeabi-v7a
[INFO]:    -> running basename https://pypi.python.org/packages/source/s/six/six-1.15.0.tar.gz
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/six/armeabi-v7a__ndk_target_21
[INFO]:    -> running mv six-1.15.0 /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-...(and 65 more)
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Unpacking kiwisolver for armeabi-v7a
[INFO]:    -> running basename https://github.com/nucleic/kiwi/archive/0846189.zip
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/kiwisolver/armeabi-v7a__ndk_target_21
[INFO]:    -> running mv kiwi-0846189f0af82af8f9f0de20b315be885c26b661 /home/vitit/Source/emtf90-kivy-test...(and 114 more)
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Unpacking numpy for armeabi-v7a
[INFO]:    -> running basename https://pypi.python.org/packages/source/n/numpy/numpy-1.18.1.zip
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/numpy/armeabi-v7a__ndk_target_21
[INFO]:    -> running mv numpy-1.18.1 /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/buil...(and 71 more)
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Unpacking pyjnius for armeabi-v7a
[INFO]:    -> running basename https://github.com/kivy/pyjnius/archive/1.3.0.zip
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/pyjnius-sdl2/armeabi-v7a__ndk_target_21
[INFO]:    -> running mv pyjnius-1.3.0 /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/bui...(and 81 more)
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    -> running rm -rf /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi...(and 71 more)
[INFO]:    -> running cp -a /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-and...(and 190 more)
[INFO]:    Unpacking kivy for armeabi-v7a
[INFO]:    -> running basename https://github.com/kivy/kivy/archive/2.0.0.zip
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/kivy/armeabi-v7a__ndk_target_21
[INFO]:    -> running mv kivy-2.0.0 /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-...(and 67 more)
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Unpacking matplotlib for armeabi-v7a
[INFO]:    -> running basename https://github.com/matplotlib/matplotlib/archive/v3.1.3.zip
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/matplotlib/armeabi-v7a__ndk_target_21
[INFO]:    -> running mv matplotlib-3.1.3 /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/...(and 85 more)
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    # Prebuilding recipes
[INFO]:    Prebuilding freetype for armeabi-v7a
[INFO]:    freetype has no prebuild_armeabi_v7a, skipping
[INFO]:    Prebuilding hostpython3 for armeabi-v7a
[INFO]:    hostpython3 has no prebuild_armeabi_v7a, skipping
[INFO]:    Applying patches for hostpython3[armeabi-v7a]
[INFO]:    Applying patch patches/pyconfig_detection.patch
[INFO]:    -> running patch -t -d /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-ar...(and 220 more)
[INFO]:    -> running touch /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-...(and 63 more)
[INFO]:    Prebuilding libffi for armeabi-v7a
[INFO]:    libffi has no prebuild_armeabi_v7a, skipping
[INFO]:    Applying patches for libffi[armeabi-v7a]
[INFO]:    Applying patch remove-version-info.patch
[INFO]:    -> running patch -t -d /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-ar...(and 217 more)
[INFO]:    -> running touch /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-...(and 72 more)
[INFO]:    Prebuilding openssl for armeabi-v7a
[INFO]:    openssl has no prebuild_armeabi_v7a, skipping
[INFO]:    Prebuilding png for armeabi-v7a
[INFO]:    png has no prebuild_armeabi_v7a, skipping
[INFO]:    Prebuilding sdl2_image for armeabi-v7a
[INFO]:    sdl2_image has no prebuild_armeabi_v7a, skipping
[INFO]:    Applying patches for sdl2_image[armeabi-v7a]
[INFO]:    Applying patch toggle_jpg_png_webp.patch
[INFO]:    -> running patch -t -d /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-ar...(and 204 more)
[INFO]:    Applying patch extra_cflags.patch
[INFO]:    -> running patch -t -d /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-ar...(and 197 more)
[INFO]:    -> running touch /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-...(and 55 more)
[INFO]:    Prebuilding sdl2_mixer for armeabi-v7a
[INFO]:    sdl2_mixer has no prebuild_armeabi_v7a, skipping
[INFO]:    Applying patches for sdl2_mixer[armeabi-v7a]
[INFO]:    Applying patch toggle_modplug_mikmod_smpeg_ogg.patch
[INFO]:    -> running patch -t -d /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-ar...(and 216 more)
[INFO]:    -> running touch /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-...(and 55 more)
[INFO]:    Prebuilding sdl2_ttf for armeabi-v7a
[INFO]:    sdl2_ttf has no prebuild_armeabi_v7a, skipping
[INFO]:    Prebuilding sqlite3 for armeabi-v7a
[INFO]:    sqlite3 has no prebuild_armeabi_v7a, skipping
[INFO]:    Prebuilding python3 for armeabi-v7a
[INFO]:    python3 has no prebuild_armeabi_v7a, skipping
[INFO]:    Applying patches for python3[armeabi-v7a]
[INFO]:    Applying patch patches/pyconfig_detection.patch
[INFO]:    -> running patch -t -d /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-ar...(and 227 more)
[INFO]:    Applying patch patches/reproducible-buildinfo.diff
[INFO]:    -> running patch -t -d /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-ar...(and 230 more)
[INFO]:    Applying patch patches/py3.8.1.patch
[INFO]:    -> running patch -t -d /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-ar...(and 216 more)
[INFO]:    -> running touch /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-...(and 74 more)
[INFO]:    Prebuilding sdl2 for armeabi-v7a
[INFO]:    sdl2 has no prebuild_armeabi_v7a, skipping
[INFO]:    Prebuilding setuptools for armeabi-v7a
[INFO]:    setuptools has no prebuild_armeabi_v7a, skipping
[INFO]:    Prebuilding cppy for armeabi-v7a
[INFO]:    cppy has no prebuild_armeabi_v7a, skipping
[INFO]:    Prebuilding cython for armeabi-v7a
[INFO]:    cython has no prebuild_armeabi_v7a, skipping
[INFO]:    Prebuilding six for armeabi-v7a
[INFO]:    six has no prebuild_armeabi_v7a, skipping
[INFO]:    Prebuilding kiwisolver for armeabi-v7a
[INFO]:    kiwisolver has no prebuild_armeabi_v7a, skipping
[INFO]:    Prebuilding numpy for armeabi-v7a
[INFO]:    numpy has no prebuild_armeabi_v7a, skipping
[INFO]:    Applying patches for numpy[armeabi-v7a]
[INFO]:    Applying patch patches/hostnumpy-xlocale.patch
[INFO]:    -> running patch -t -d /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-ar...(and 220 more)
[INFO]:    Applying patch patches/remove-default-paths.patch
[INFO]:    -> running patch -t -d /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-ar...(and 223 more)
[INFO]:    Applying patch patches/add_libm_explicitly_to_build.patch
[INFO]:    -> running patch -t -d /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-ar...(and 231 more)
[INFO]:    Applying patch patches/compiler_cxx_fix.patch
[INFO]:    -> running patch -t -d /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-ar...(and 219 more)
[INFO]:    -> running touch /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-...(and 70 more)
[INFO]:    Prebuilding pyjnius for armeabi-v7a
[INFO]:    pyjnius has no prebuild_armeabi_v7a, skipping
[INFO]:    Applying patches for pyjnius[armeabi-v7a]
[INFO]:    Applying patch sdl2_jnienv_getter.patch
[INFO]:    -> running patch -t -d /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-ar...(and 224 more)
[INFO]:    -> running touch /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-...(and 79 more)
[INFO]:    Prebuilding android for armeabi-v7a
[INFO]:    android has no prebuild_armeabi_v7a, skipping
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/android-sdl2/armeabi-v7a__ndk_target_21/android
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Prebuilding kivy for armeabi-v7a
[INFO]:    kivy has no prebuild_armeabi_v7a, skipping
[INFO]:    Prebuilding matplotlib for armeabi-v7a
[INFO]:    Downloading jquery-ui for matplatlib web backend
[INFO]:    Will download into /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/matplotlib/armeabi-v7a__ndk_target_21/matplotlib/p4a_files
[INFO]:    Downloading matplotlib from https://jqueryui.com/resources/download/jquery-ui-1.12.1.zip
[INFO]:    Applying patches for matplotlib[armeabi-v7a]
[INFO]:    Applying patch mpl_android_fixes.patch
[INFO]:    -> running patch -t -d /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-ar...(and 227 more)
[INFO]:    -> running touch /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-...(and 80 more)
[INFO]:    # Building recipes
[INFO]:    Building freetype for armeabi-v7a
[INFO]:    Build freetype (without harfbuzz)
[INFO]:    Configure args are:
	---host=arm-linux-androideabi
	---disable-static
	---enable-shared
	---prefix=/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/freetype/armeabi-v7a__ndk_target_21/freetype
	---with-png=no
	---without-bzip2
	---with-zlib=yes
	---with-harfbuzz=no
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/freetype/armeabi-v7a__ndk_target_21/freetype
[INFO]:    -> running configure --host=arm-linux-androideabi --disable-static --enable-shared --prefix=/ho...(and 207 more)
[INFO]:    -> running make -j 24
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    -> running cp /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a...(and 213 more)
[INFO]:    Building hostpython3 for armeabi-v7a
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build
[INFO]:    -> running configure
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3
[INFO]:    -> running make -j 24 -C /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-...(and 75 more)
[INFO]:    -> running cp /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a...(and 225 more)
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Building libffi for armeabi-v7a
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/libffi/armeabi-v7a__ndk_target_21/libffi
[INFO]:    -> running autogen.sh
[INFO]:    -> running autoreconf -vif
[INFO]:    -> running configure --host=arm-linux-androideabi --prefix=/home/vitit/Source/emtf90-kivy-test/...(and 140 more)
[INFO]:    -> running make -j 24 libffi.la
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    -> running cp /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a...(and 199 more)
[INFO]:    Building openssl for armeabi-v7a
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/openssl/armeabi-v7a__ndk_target_21/openssl1.1
[INFO]:    -> running perl Configure shared no-dso no-asm android-arm -D__ANDROID_API__=21
[INFO]:    Applying patch disable-sover.patch
[INFO]:    -> running patch -t -d /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-ar...(and 217 more)
[INFO]:    -> running make build_libs
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    -> running cp /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a...(and 364 more)
[INFO]:    Building png for armeabi-v7a
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/png/armeabi-v7a__ndk_target_21/png
[INFO]:    -> running gcc -dumpmachine
[INFO]:    -> running configure --build=x86_64-redhat-linux --host=arm-linux-androideabi --target=arm-linu...(and 199 more)
[INFO]:    -> running make -j 24
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    -> running cp /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a...(and 195 more)
[INFO]:    Building sdl2_image for armeabi-v7a
[INFO]:    Building sdl2_mixer for armeabi-v7a
[INFO]:    Building sdl2_ttf for armeabi-v7a
[INFO]:    Building sqlite3 for armeabi-v7a
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/sqlite3/armeabi-v7a__ndk_target_21/sqlite3
[INFO]:    -> running ndk-build V=1 NDK_DEBUG=1 APP_PLATFORM=android-21 APP_ABI=armeabi-v7a
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Building python3 for armeabi-v7a
[WARNING]: lld not found, linking without it. Consider installing lld if linker errors occur.
[INFO]:    Activating flags for sqlite3
[INFO]:    Activating flags for libffi
[INFO]:    Activating flags for openssl
[INFO]:    Activating flags for android's zlib
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/android-build
[INFO]:    -> running configure --host=arm-linux-androideabi --build=x86_64-pc-linux-gnu --enable-shared -...(and 354 more)
[INFO]:    -> running make all -j 24 INSTSONAME=libpython3.8.so
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Building sdl2 for armeabi-v7a
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni
[INFO]:    -> running ndk-build V=1 NDK_DEBUG=1
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Building setuptools for armeabi-v7a
[INFO]:    setuptools apparently isn't already in site-packages
[INFO]:    Installing setuptools into site-packages
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/setuptools/armeabi-v7a__ndk_target_21/setuptools
[INFO]:    -> running python3 setup.py install -O2 --root=/home/vitit/Source/emtf90-kivy-test/.buildozer/a...(and 77 more)
[INFO]:    -> running python3 setup.py install -O2 --root=/home/vitit/Source/emtf90-kivy-test/.buildozer/a...(and 129 more)
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Building cppy for armeabi-v7a
[INFO]:    cppy apparently isn't already in site-packages
[INFO]:    Installing cppy into site-packages
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/cppy/armeabi-v7a__ndk_target_21/cppy
[INFO]:    -> running python3 setup.py install -O2 --root=/home/vitit/Source/emtf90-kivy-test/.buildozer/a...(and 77 more)
[INFO]:    -> running python3 setup.py install -O2 --root=/home/vitit/Source/emtf90-kivy-test/.buildozer/a...(and 129 more)
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Building cython for armeabi-v7a
[INFO]:    cython apparently isn't already in site-packages
[INFO]:    Building compiled components in cython
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/cython/armeabi-v7a__ndk_target_21/cython
[INFO]:    -> running python3 setup.py clean --all
[INFO]:    -> running python3 setup.py build_ext -v
[INFO]:    -> running find build/lib.linux-x86_64-3.8 -name "*.o" -exec arm-linux-androideabi-strip --strip-unneeded {} ;
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Installing cython into site-packages
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/cython/armeabi-v7a__ndk_target_21/cython
[INFO]:    -> running python3 setup.py install -O2 --root=/home/vitit/Source/emtf90-kivy-test/.buildozer/a...(and 77 more)
[INFO]:    Rebuilding compiled components in cython
[INFO]:    -> running python3 setup.py clean --all
[INFO]:    -> running python3 setup.py build_ext -v
[INFO]:    -> running python3 setup.py install -O2 --root=/home/vitit/Source/emtf90-kivy-test/.buildozer/a...(and 129 more)
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Building six for armeabi-v7a
[INFO]:    six apparently isn't already in site-packages
[INFO]:    Installing six into site-packages
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/six/armeabi-v7a__ndk_target_21/six
[INFO]:    -> running python3 setup.py install -O2 --root=/home/vitit/Source/emtf90-kivy-test/.buildozer/a...(and 77 more)
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Building kiwisolver for armeabi-v7a
[INFO]:    kiwisolver apparently isn't already in site-packages
[INFO]:    Building compiled components in kiwisolver
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/kiwisolver/armeabi-v7a__ndk_target_21/kiwisolver
[INFO]:    -> running python3 setup.py build_ext -v
[INFO]:    -> running find build/lib.linux-x86_64-3.8 -name "*.o" -exec arm-linux-androideabi-strip --strip-unneeded {} ;
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Installing kiwisolver into site-packages
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/kiwisolver/armeabi-v7a__ndk_target_21/kiwisolver
[INFO]:    -> running python3 setup.py install -O2 --root=/home/vitit/Source/emtf90-kivy-test/.buildozer/a...(and 77 more)
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Building numpy for armeabi-v7a
[INFO]:    numpy apparently isn't already in site-packages
[INFO]:    Building compiled components in numpy
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/numpy/armeabi-v7a__ndk_target_21/numpy
[INFO]:    -> running python3 setup.py clean --all --force
[INFO]:    -> running python3 setup.py build_ext -v -j 24
[INFO]:    -> running find build/lib.linux-x86_64-3.8 -name "*.o" -exec arm-linux-androideabi-strip --strip-unneeded {} ;
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Installing numpy into site-packages
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/numpy/armeabi-v7a__ndk_target_21/numpy
[INFO]:    -> running python3 setup.py install -O2 --root=/home/vitit/Source/emtf90-kivy-test/.buildozer/a...(and 77 more)
[INFO]:    Rebuilding compiled components in numpy
[INFO]:    -> running python3 setup.py clean --all --force
[INFO]:    -> running python3 setup.py build_ext -v -j 24
[INFO]:    -> running python3 setup.py install -O2 --root=/home/vitit/Source/emtf90-kivy-test/.buildozer/a...(and 129 more)
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Building pyjnius for armeabi-v7a
[INFO]:    jnius apparently isn't already in site-packages
[INFO]:    Cythonizing anything necessary in pyjnius
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/pyjnius-sdl2/armeabi-v7a__ndk_target_21/pyjnius
[INFO]:    -> running python3 -c import sys; print(sys.path)
[INFO]:    Trying first build of pyjnius to get cython files: this is expected to fail
[INFO]:    -> running python3 setup.py build_ext -v
           working: error: command '/home/vitit/.buildozer/android/platform/android-ndk-r19c/toolchains/llvm/prebui...(and 52 more)  Exception in thread background thread for pid 2060:
Traceback (most recent call last):
  File "/home/vitit/miniconda3/envs/kivy-env/lib/python3.9/threading.py", line 973, in _bootstrap_inner
    self.run()
  File "/home/vitit/miniconda3/envs/kivy-env/lib/python3.9/threading.py", line 910, in run
    self._target(*self._args, **self._kwargs)
  File "/home/vitit/miniconda3/envs/kivy-env/lib/python3.9/site-packages/sh.py", line 1683, in wrap
    fn(*rgs, **kwargs)
  File "/home/vitit/miniconda3/envs/kivy-env/lib/python3.9/site-packages/sh.py", line 2662, in background_thread
    handle_exit_code(exit_code)
  File "/home/vitit/miniconda3/envs/kivy-env/lib/python3.9/site-packages/sh.py", line 2349, in fn
    return self.command.handle_command_exit_code(exit_code)
  File "/home/vitit/miniconda3/envs/kivy-env/lib/python3.9/site-packages/sh.py", line 905, in handle_command_exit_code
    raise exc
sh.ErrorReturnCode_1: 

  RAN: /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build/python3 setup.py build_ext -v

  STDOUT:
warning: [options] bootstrap class path not set in conjunction with -source 1.7
1 warning
running build_ext
building 'jnius' extension
creating build
creating build/temp.linux-x86_64-3.8
creating build/temp.linux-x86_64-3.8/jnius
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -I/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.302.b08-0.el7_9.x86_64/include -I/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.302.b08-0.el7_9.x86_64/include/linux -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.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.8/jnius/jnius.o
clang: error: no such file or directory: 'jnius/jnius.c'
clang: error: no input files
error: command '/home/vitit/.buildozer/android/platform/android-ndk-r19c/toolchains/llvm/prebuilt/linux-x86_64/bin/clang' failed with exit status 1


  STDERR:

[INFO]:    pyjnius first build failed (as expected)
[INFO]:    Running cython where appropriate
[INFO]:    Cythonize jnius/jnius.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 34 more)

[INFO]:    -> running python3 setup.py build_ext -v
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/pyjnius-sdl2/armeabi-v7a__ndk_target_21/pyjnius
[INFO]:    Stripping object files
[INFO]:    -> running find . -iname *.so -exec /usr/bin/echo {} ;
[INFO]:    -> running find . -iname *.so -exec arm-linux-androideabi-strip --strip-unneeded {} ;
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/pyjnius-sdl2/armeabi-v7a__ndk_target_21/pyjnius
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Installing pyjnius into site-packages
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/pyjnius-sdl2/armeabi-v7a__ndk_target_21/pyjnius
[INFO]:    -> running python3 setup.py install -O2 --root=/home/vitit/Source/emtf90-kivy-test/.buildozer/a...(and 77 more)
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Building android for armeabi-v7a
[INFO]:    android apparently isn't already in site-packages
[INFO]:    Cythonizing anything necessary in android
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/android-sdl2/armeabi-v7a__ndk_target_21/android
[INFO]:    -> running python3 -c import sys; print(sys.path)
[INFO]:    Trying first build of android to get cython files: this is expected to fail
[INFO]:    -> running python3 setup.py build_ext -v
           working: error: command '/home/vitit/.buildozer/android/platform/android-ndk-r19c/toolchains/llvm/prebui...(and 52 more)  Exception in thread background thread for pid 2244:
Traceback (most recent call last):
  File "/home/vitit/miniconda3/envs/kivy-env/lib/python3.9/threading.py", line 973, in _bootstrap_inner
    self.run()
  File "/home/vitit/miniconda3/envs/kivy-env/lib/python3.9/threading.py", line 910, in run
    self._target(*self._args, **self._kwargs)
  File "/home/vitit/miniconda3/envs/kivy-env/lib/python3.9/site-packages/sh.py", line 1683, in wrap
    fn(*rgs, **kwargs)
  File "/home/vitit/miniconda3/envs/kivy-env/lib/python3.9/site-packages/sh.py", line 2662, in background_thread
    handle_exit_code(exit_code)
  File "/home/vitit/miniconda3/envs/kivy-env/lib/python3.9/site-packages/sh.py", line 2349, in fn
    return self.command.handle_command_exit_code(exit_code)
  File "/home/vitit/miniconda3/envs/kivy-env/lib/python3.9/site-packages/sh.py", line 905, in handle_command_exit_code
    raise exc
sh.ErrorReturnCode_1: 

  RAN: /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build/python3 setup.py build_ext -v

  STDOUT:
running build_ext
building 'android._android' extension
creating build
creating build/temp.linux-x86_64-3.8
creating build/temp.linux-x86_64-3.8/android
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c android/_android.c -o build/temp.linux-x86_64-3.8/android/_android.o
clang: error: no such file or directory: 'android/_android.c'
clang: error: no input files
error: command '/home/vitit/.buildozer/android/platform/android-ndk-r19c/toolchains/llvm/prebuilt/linux-x86_64/bin/clang' failed with exit status 1


  STDERR:

[INFO]:    android first build failed (as expected)
[INFO]:    Running cython where appropriate
[INFO]:    Cythonize android/_android.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 39 more)

[INFO]:    Cythonize android/_android_billing.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 47 more)
[INFO]:    Cythonize android/_android_sound.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 45 more)
[INFO]:    -> running python3 setup.py build_ext -v
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/android-sdl2/armeabi-v7a__ndk_target_21/android
[INFO]:    Stripping object files
[INFO]:    -> running find . -iname *.so -exec /usr/bin/echo {} ;
[INFO]:    -> running find . -iname *.so -exec arm-linux-androideabi-strip --strip-unneeded {} ;
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/android-sdl2/armeabi-v7a__ndk_target_21/android
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Installing android into site-packages
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/android-sdl2/armeabi-v7a__ndk_target_21/android
[INFO]:    -> running python3 setup.py install -O2 --root=/home/vitit/Source/emtf90-kivy-test/.buildozer/a...(and 77 more)
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Building kivy for armeabi-v7a
[INFO]:    kivy apparently isn't already in site-packages
[INFO]:    Cythonizing anything necessary in kivy
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/kivy/armeabi-v7a__ndk_target_21/kivy
[INFO]:    -> running python3 -c import sys; print(sys.path)
[INFO]:    Trying first build of kivy to get cython files: this is expected to fail
[INFO]:    -> running python3 setup.py build_ext -v
           working:  error: command '/home/vitit/.buildozer/android/platform/android-ndk-r19c/toolchains/llvm/prebu...(and 53 more)  Exception in thread background thread for pid 2318:
Traceback (most recent call last):
  File "/home/vitit/miniconda3/envs/kivy-env/lib/python3.9/threading.py", line 973, in _bootstrap_inner
    self.run()
  File "/home/vitit/miniconda3/envs/kivy-env/lib/python3.9/threading.py", line 910, in run
    self._target(*self._args, **self._kwargs)
  File "/home/vitit/miniconda3/envs/kivy-env/lib/python3.9/site-packages/sh.py", line 1683, in wrap
    fn(*rgs, **kwargs)
  File "/home/vitit/miniconda3/envs/kivy-env/lib/python3.9/site-packages/sh.py", line 2662, in background_thread
    handle_exit_code(exit_code)
  File "/home/vitit/miniconda3/envs/kivy-env/lib/python3.9/site-packages/sh.py", line 2349, in fn
    return self.command.handle_command_exit_code(exit_code)
  File "/home/vitit/miniconda3/envs/kivy-env/lib/python3.9/site-packages/sh.py", line 905, in handle_command_exit_code
    raise exc
sh.ErrorReturnCode_1: 

  RAN: /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build/python3 setup.py build_ext -v

  STDOUT:
[INFO   ] [Logger      ] Record log in /home/vitit/.kivy/logs/kivy_21-10-01_25.txt
[INFO   ] [Kivy        ] v2.0.0
[INFO   ] [Kivy        ] Installed at "/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/kivy/armeabi-v7a__ndk_target_21/kivy/kivy/__init__.py"
[INFO   ] [Python      ] v3.8.9 (default, Oct  1 2021, 17:09:12) 
[GCC 4.8.5 20150623 (Red Hat 4.8.5-11)]
[INFO   ] [Python      ] Interpreter at "/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build/python3"
Environ change use_sdl2 -> True
Not using cython on android
Current directory is: /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/kivy/armeabi-v7a__ndk_target_21/kivy
Source and initial build directory is: 
Python path is:
/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/kivy/armeabi-v7a__ndk_target_21/kivy
/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build/Lib
/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build/Lib/site-packages
/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build/build/lib.linux-x86_64-3.8
/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build/build/temp.linux-x86_64-3.8
/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build/build/scripts-3.8
/usr/local/lib/python38.zip
/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Lib
/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/kivy/armeabi-v7a__ndk_target_21/kivy/kivy/modules
/home/vitit/.kivy/mods

Using this graphics system: OpenGL ES 2
WARNING: A problem occurred while running pkg-config --libs --cflags sdl2 SDL2_ttf SDL2_image SDL2_mixer (code 1)

b"Package sdl2 was not found in the pkg-config search path.\nPerhaps you should add the directory containing `sdl2.pc'\nto the PKG_CONFIG_PATH environment variable\nNo package 'sdl2' found\nPackage SDL2_ttf was not found in the pkg-config search path.\nPerhaps you should add the directory containing `SDL2_ttf.pc'\nto the PKG_CONFIG_PATH environment variable\nNo package 'SDL2_ttf' found\nPackage SDL2_image was not found in the pkg-config search path.\nPerhaps you should add the directory containing `SDL2_image.pc'\nto the PKG_CONFIG_PATH environment variable\nNo package 'SDL2_image' found\nPackage SDL2_mixer was not found in the pkg-config search path.\nPerhaps you should add the directory containing `SDL2_mixer.pc'\nto the PKG_CONFIG_PATH environment variable\nNo package 'SDL2_mixer' found\n"

SDL2: found SDL header at /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni/SDL/include/SDL.h
SDL2: found SDL_mixer header at /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni/SDL2_mixer/SDL_mixer.h
SDL2: found SDL_ttf header at /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni/SDL2_ttf/SDL_ttf.h
SDL2: found SDL_image header at /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni/SDL2_image/SDL_image.h
running build_ext
Building extensions in parallel using 4 cores
Build configuration is:
 * use_rpi = 0
 * use_egl = 0
 * use_opengl_es2 = 1
 * use_opengl_mock = 0
 * use_sdl2 = 1
 * use_pangoft2 = 0
 * use_ios = 0
 * use_android = 1
 * use_mesagl = 0
 * use_x11 = 0
 * use_wayland = 0
 * use_gstreamer = 0
 * use_avfoundation = 0
 * use_osx_frameworks = 0
 * debug_gl = 0
 * kivy_sdl_gl_alpha_size = 8
 * debug = False
Updated kivy/include/config.h
Updated kivy/include/config.pxi
Updated kivy/setupconfig.py
Detected compiler is unix
building 'kivy._event' extension
creating build
building 'kivy._clock' extension
creating build/temp.linux-x86_64-3.8
building 'kivy.weakproxy' extension
building 'kivy.properties' extension
creating build/temp.linux-x86_64-3.8
creating build/temp.linux-x86_64-3.8/kivy
creating build/temp.linux-x86_64-3.8/kivy
creating build/temp.linux-x86_64-3.8/kivy
creating build/temp.linux-x86_64-3.8/kivy
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/weakproxy.c -o build/temp.linux-x86_64-3.8/kivy/weakproxy.o
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/_clock.c -o build/temp.linux-x86_64-3.8/kivy/_clock.o
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/_event.c -o build/temp.linux-x86_64-3.8/kivy/_event.o
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/properties.c -o build/temp.linux-x86_64-3.8/kivy/properties.o
clangclang: error: error: no such file or directory: 'kivy/weakproxy.c': no such file or directory: 'kivy/_clock.c'

clangclang: error: error: no input files: no input files

clangclang: error: : error: no such file or directory: 'kivy/_event.c'
no such file or directory: 'kivy/properties.c'
clangclang: : errorerror: : no input filesno input files

building 'kivy.graphics.buffer' extension
building 'kivy.graphics.context' extension
building 'kivy.graphics.compiler' extension
creating build/temp.linux-x86_64-3.8/kivy/graphics
creating build/temp.linux-x86_64-3.8/kivy/graphics
building 'kivy.graphics.context_instructions' extension
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/graphics/buffer.c -o build/temp.linux-x86_64-3.8/kivy/graphics/buffer.o
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/graphics/context_instructions.c -o build/temp.linux-x86_64-3.8/kivy/graphics/context_instructions.o
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/graphics/compiler.c -o build/temp.linux-x86_64-3.8/kivy/graphics/compiler.o
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/graphics/context.c -o build/temp.linux-x86_64-3.8/kivy/graphics/context.o
clang: error: no such file or directory: 'kivy/graphics/buffer.c'
clang: error: no input files
clang: error: no such file or directory: 'kivy/graphics/context_instructions.c'
clang: building 'kivy.graphics.fbo' extension
error: no input files
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/graphics/fbo.c -o build/temp.linux-x86_64-3.8/kivy/graphics/fbo.o
clang: error: no such file or directory: 'kivy/graphics/compiler.c'
clang: error: no input files
building 'kivy.graphics.gl_instructions' extension
clang: error: no such file or directory: 'kivy/graphics/context.c'
clang: error: no input files
building 'kivy.graphics.instructions' extension
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/graphics/gl_instructions.c -o build/temp.linux-x86_64-3.8/kivy/graphics/gl_instructions.o
building 'kivy.graphics.opengl' extension
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/graphics/instructions.c -o build/temp.linux-x86_64-3.8/kivy/graphics/instructions.o
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/graphics/opengl.c -o build/temp.linux-x86_64-3.8/kivy/graphics/opengl.o
clang: error: no such file or directory: 'kivy/graphics/fbo.c'
clang: error: no input files
building 'kivy.graphics.opengl_utils' extension
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/graphics/opengl_utils.c -o build/temp.linux-x86_64-3.8/kivy/graphics/opengl_utils.o
clang: error: no such file or directory: 'kivy/graphics/gl_instructions.c'
clang: error: no input files
building 'kivy.graphics.shader' extension
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/graphics/shader.c -o build/temp.linux-x86_64-3.8/kivy/graphics/shader.o
clang: error: no such file or directory: 'kivy/graphics/instructions.c'
clangclang: error: no input files: 
error: no such file or directory: 'kivy/graphics/opengl.c'
clang: error: no input files
building 'kivy.graphics.stencil_instructions' extension
building 'kivy.graphics.scissor_instructions' extension
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/graphics/stencil_instructions.c -o build/temp.linux-x86_64-3.8/kivy/graphics/stencil_instructions.o
clang: error: no such file or directory: 'kivy/graphics/opengl_utils.c'
clang: error: no input files
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/graphics/scissor_instructions.c -o build/temp.linux-x86_64-3.8/kivy/graphics/scissor_instructions.o
building 'kivy.graphics.texture' extension
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/graphics/texture.c -o build/temp.linux-x86_64-3.8/kivy/graphics/texture.o
clang: error: no such file or directory: 'kivy/graphics/shader.c'
clang: error: no input files
building 'kivy.graphics.transformation' extension
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/graphics/transformation.c -o build/temp.linux-x86_64-3.8/kivy/graphics/transformation.o
clangclang: error: error: no such file or directory: 'kivy/graphics/scissor_instructions.c': no such file or directory: 'kivy/graphics/stencil_instructions.c'

clangclang: error: error: no input files: no input files

building 'kivy.graphics.vbo' extension
building 'kivy.graphics.vertex' extension
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/graphics/vbo.c -o build/temp.linux-x86_64-3.8/kivy/graphics/vbo.o
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/graphics/vertex.c -o build/temp.linux-x86_64-3.8/kivy/graphics/vertex.o
clang: error: no such file or directory: 'kivy/graphics/texture.c'
clang: error: no input files
building 'kivy.graphics.vertex_instructions' extension
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/graphics/vertex_instructions.c -o build/temp.linux-x86_64-3.8/kivy/graphics/vertex_instructions.o
clang: error: no such file or directory: 'kivy/graphics/transformation.c'
clang: error: no input files
building 'kivy.graphics.cgl' extension
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/graphics/cgl.c -o build/temp.linux-x86_64-3.8/kivy/graphics/cgl.o
clangclang: error: error: no such file or directory: 'kivy/graphics/vbo.c': no such file or directory: 'kivy/graphics/vertex.c'

clangclang: error: error: no input files: no input files

building 'kivy.graphics.cgl_backend.cgl_mock' extension
creating build/temp.linux-x86_64-3.8/kivy/graphics/cgl_backend
building 'kivy.graphics.cgl_backend.cgl_gl' extension
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/graphics/cgl_backend/cgl_mock.c -o build/temp.linux-x86_64-3.8/kivy/graphics/cgl_backend/cgl_mock.o
clang: /home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/platforms/android-21/arch-arm/usr/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/graphics/cgl_backend/cgl_gl.c -o build/temp.linux-x86_64-3.8/kivy/graphics/cgl_backend/cgl_gl.o
error: no such file or directory: 'kivy/graphics/vertex_instructions.c'
clang: error: no input files
clang: error: no such file or directory: 'kivy/graphics/cgl.c'
clang: error: no input files
building 'kivy.graphics.cgl_backend.cgl_glew' extension
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/platforms/android-21/arch-arm/usr/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/graphics/cgl_backend/cgl_glew.c -o build/temp.linux-x86_64-3.8/kivy/graphics/cgl_backend/cgl_glew.o
building 'kivy.graphics.cgl_backend.cgl_sdl2' extension
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni/SDL/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni/SDL2_image -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni/SDL2_mixer -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni/SDL2_ttf -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/graphics/cgl_backend/cgl_sdl2.c -o build/temp.linux-x86_64-3.8/kivy/graphics/cgl_backend/cgl_sdl2.o
clang: error: no such file or directory: 'kivy/graphics/cgl_backend/cgl_mock.c'
clang: error: no input files
clang: error: no such file or directory: 'kivy/graphics/cgl_backend/cgl_gl.c'
clang: error: no input files
building 'kivy.graphics.cgl_backend.cgl_debug' extension
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/graphics/cgl_backend/cgl_debug.c -o build/temp.linux-x86_64-3.8/kivy/graphics/cgl_backend/cgl_debug.o
clang: error: no such file or directory: 'kivy/graphics/cgl_backend/cgl_glew.c'
clang: error: no input files
building 'kivy.core.text.text_layout' extension
creating build/temp.linux-x86_64-3.8/kivy/core
building 'kivy.core.window.window_info' extension
creating build/temp.linux-x86_64-3.8/kivy/core/text
creating build/temp.linux-x86_64-3.8/kivy/core/window
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/core/text/text_layout.c -o build/temp.linux-x86_64-3.8/kivy/core/text/text_layout.o
clang: error: no such file or directory: 'kivy/graphics/cgl_backend/cgl_sdl2.c'
clang: error: no input files
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/core/window/window_info.c -o build/temp.linux-x86_64-3.8/kivy/core/window/window_info.o
building 'kivy.graphics.tesselator' extension
creating build/temp.linux-x86_64-3.8/kivy/lib
creating build/temp.linux-x86_64-3.8/kivy/lib/libtess2
creating build/temp.linux-x86_64-3.8/kivy/lib/libtess2/Source
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -Ikivy/lib/libtess2/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/graphics/tesselator.c -o build/temp.linux-x86_64-3.8/kivy/graphics/tesselator.o
clang: error: no such file or directory: 'kivy/graphics/cgl_backend/cgl_debug.c'
clang: error: no input files
building 'kivy.graphics.svg' extension
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/graphics/svg.c -o build/temp.linux-x86_64-3.8/kivy/graphics/svg.o
clang: error: no such file or directory: 'kivy/core/text/text_layout.c'
clang: error: no input files
building 'kivy.core.window._window_sdl2' extension
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni/SDL/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni/SDL2_image -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni/SDL2_mixer -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni/SDL2_ttf -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/core/window/_window_sdl2.c -o build/temp.linux-x86_64-3.8/kivy/core/window/_window_sdl2.o
clang: error: no such file or directory: 'kivy/core/window/window_info.c'
clang: error: no input files
building 'kivy.core.image._img_sdl2' extension
creating build/temp.linux-x86_64-3.8/kivy/core/image
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni/SDL/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni/SDL2_image -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni/SDL2_mixer -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni/SDL2_ttf -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/core/image/_img_sdl2.c -o build/temp.linux-x86_64-3.8/kivy/core/image/_img_sdl2.o
clang: error: no such file or directory: 'kivy/graphics/tesselator.c'
clang: error: no input files
building 'kivy.core.text._text_sdl2' extension
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni/SDL/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni/SDL2_image -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni/SDL2_mixer -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni/SDL2_ttf -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/core/text/_text_sdl2.c -o build/temp.linux-x86_64-3.8/kivy/core/text/_text_sdl2.o
clang: error: no such file or directory: 'kivy/graphics/svg.c'
clang: error: no input files
building 'kivy.core.audio.audio_sdl2' extension
creating build/temp.linux-x86_64-3.8/kivy/core/audio
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni/SDL/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni/SDL2_image -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni/SDL2_mixer -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni/SDL2_ttf -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/core/audio/audio_sdl2.c -o build/temp.linux-x86_64-3.8/kivy/core/audio/audio_sdl2.o
clang: error: no such file or directory: 'kivy/core/window/_window_sdl2.c'
clang: error: no input files
building 'kivy.core.clipboard._clipboard_sdl2' extension
clang: error: no such file or directory: 'kivy/core/image/_img_sdl2.c'
clang: error: no input files
creating build/temp.linux-x86_64-3.8/kivy/core/clipboard
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -fPIC -Ikivy/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni/SDL/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni/SDL2_image -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni/SDL2_mixer -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2/jni/SDL2_ttf -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/core/clipboard/_clipboard_sdl2.c -o build/temp.linux-x86_64-3.8/kivy/core/clipboard/_clipboard_sdl2.o
clang: error: no such file or directory: 'kivy/core/text/_text_sdl2.c'
clang: error: no input files
clang: error: no such file or directory: 'kivy/core/audio/audio_sdl2.c'
clang: error: no input files
clang: error: no such file or directory: 'kivy/core/clipboard/_clipboard_sdl2.c'
clang: error: no input files
 error: command '/home/vitit/.buildozer/android/platform/android-ndk-r19c/toolchains/llvm/prebuilt/linux-x86_64/bin/clang' failed with exit status 1


  STDERR:

[INFO]:    kivy first build failed (as expected)
[INFO]:    Running cython where appropriate
[INFO]:    Cythonize kivy/_clock.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 34 more)

[INFO]:    Cythonize kivy/_event.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 34 more)
[INFO]:    Cythonize kivy/properties.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 38 more)
[INFO]:    Cythonize kivy/weakproxy.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 37 more)
[INFO]:    Cythonize kivy/core/audio/audio_sdl2.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 49 more)
[INFO]:    Cythonize kivy/core/camera/camera_avfoundation.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 59 more)
[INFO]:    Cythonize kivy/core/clipboard/_clipboard_sdl2.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 58 more)
[INFO]:    Cythonize kivy/core/image/_img_sdl2.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 48 more)
[INFO]:    Cythonize kivy/core/image/img_imageio.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 50 more)
[INFO]:    Cythonize kivy/core/text/_text_pango.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 49 more)
[INFO]:    Cythonize kivy/core/text/_text_sdl2.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 48 more)
[INFO]:    Cythonize kivy/core/text/text_layout.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 49 more)
[INFO]:    Cythonize kivy/core/window/_window_sdl2.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 52 more)
[INFO]:    Cythonize kivy/core/window/window_info.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 51 more)
[INFO]:    Cythonize kivy/graphics/buffer.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 43 more)
[INFO]:    Cythonize kivy/graphics/cgl.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 40 more)
[INFO]:    Cythonize kivy/graphics/compiler.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 45 more)
[INFO]:    Cythonize kivy/graphics/context.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 44 more)
[INFO]:    Cythonize kivy/graphics/context_instructions.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 57 more)
[INFO]:    Cythonize kivy/graphics/fbo.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 40 more)
[INFO]:    Cythonize kivy/graphics/gl_instructions.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 52 more)
[INFO]:    Cythonize kivy/graphics/instructions.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 49 more)
[INFO]:    Cythonize kivy/graphics/opengl.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 43 more)
[INFO]:    Cythonize kivy/graphics/opengl_utils.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 49 more)
[INFO]:    Cythonize kivy/graphics/scissor_instructions.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 57 more)
[INFO]:    Cythonize kivy/graphics/shader.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 43 more)
[INFO]:    Cythonize kivy/graphics/stencil_instructions.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 57 more)
[INFO]:    Cythonize kivy/graphics/svg.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 40 more)
[INFO]:    Cythonize kivy/graphics/tesselator.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 47 more)
[INFO]:    Cythonize kivy/graphics/texture.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 44 more)
[INFO]:    Cythonize kivy/graphics/transformation.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 51 more)
[INFO]:    Cythonize kivy/graphics/vbo.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 40 more)
[INFO]:    Cythonize kivy/graphics/vertex.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 43 more)
[INFO]:    Cythonize kivy/graphics/vertex_instructions.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 56 more)
[INFO]:    Cythonize kivy/graphics/cgl_backend/cgl_debug.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 58 more)
[INFO]:    Cythonize kivy/graphics/cgl_backend/cgl_gl.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 55 more)
[INFO]:    Cythonize kivy/graphics/cgl_backend/cgl_glew.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 57 more)
[INFO]:    Cythonize kivy/graphics/cgl_backend/cgl_mock.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 57 more)
[INFO]:    Cythonize kivy/graphics/cgl_backend/cgl_sdl2.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 57 more)
[INFO]:    Cythonize kivy/lib/gstplayer/_gstplayer.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 52 more)
[INFO]:    Cythonize kivy/lib/vidcore_lite/bcm.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 48 more)
[INFO]:    Cythonize kivy/lib/vidcore_lite/egl.pyx
[INFO]:    -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(set...(and 48 more)
[INFO]:    -> directory context .
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/kivy/armeabi-v7a__ndk_target_21/kivy
[INFO]:    -> running python3 setup.py build_ext -v
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/kivy/armeabi-v7a__ndk_target_21/kivy
[INFO]:    Stripping object files
[INFO]:    -> running find . -iname *.so -exec /usr/bin/echo {} ;
[INFO]:    -> running find . -iname *.so -exec arm-linux-androideabi-strip --strip-unneeded {} ;
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/kivy/armeabi-v7a__ndk_target_21/kivy
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Installing kivy into site-packages
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/kivy/armeabi-v7a__ndk_target_21/kivy
[INFO]:    -> running python3 setup.py install -O2 --root=/home/vitit/Source/emtf90-kivy-test/.buildozer/a...(and 77 more)
[INFO]:    <- directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android
[INFO]:    Building matplotlib for armeabi-v7a
[INFO]:    matplotlib apparently isn't already in site-packages
[INFO]:    Building compiled components in matplotlib
[INFO]:    -> directory context /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/matplotlib/armeabi-v7a__ndk_target_21/matplotlib
[INFO]:    -> running python3 setup.py build_ext -v
           working: error: command '/home/vitit/.buildozer/android/platform/android-ndk-r19c/toolchains/llvm/prebui...(and 54 more)  Exception in thread background thread for pid 2918:
Traceback (most recent call last):
  File "/home/vitit/miniconda3/envs/kivy-env/lib/python3.9/threading.py", line 973, in _bootstrap_inner
    self.run()
  File "/home/vitit/miniconda3/envs/kivy-env/lib/python3.9/threading.py", line 910, in run
    self._target(*self._args, **self._kwargs)
  File "/home/vitit/miniconda3/envs/kivy-env/lib/python3.9/site-packages/sh.py", line 1683, in wrap
    fn(*rgs, **kwargs)
  File "/home/vitit/miniconda3/envs/kivy-env/lib/python3.9/site-packages/sh.py", line 2662, in background_thread
    handle_exit_code(exit_code)
  File "/home/vitit/miniconda3/envs/kivy-env/lib/python3.9/site-packages/sh.py", line 2349, in fn
    return self.command.handle_command_exit_code(exit_code)
  File "/home/vitit/miniconda3/envs/kivy-env/lib/python3.9/site-packages/sh.py", line 905, in handle_command_exit_code
    raise exc
sh.ErrorReturnCode_1: 

  RAN: /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build/python3 setup.py build_ext -v

  STDOUT:
================================================================================
Edit setup.cfg to change the build options

BUILDING MATPLOTLIB
  matplotlib: yes [3.1.3]
      python: yes [3.8.9 (default, Oct  1 2021, 17:09:12)  [GCC 4.8.5 20150623
                  (Red Hat 4.8.5-11)]]
    platform: yes [linux]

OPTIONAL SUBPACKAGES
 sample_data: no  [skipping due to configuration]
       tests: no  [skipping due to configuration]

OPTIONAL BACKEND EXTENSIONS
         agg: yes [installing]
       tkagg: no  [Disabled by patching during Android build]
      macosx: no  [skipping due to configuration]

OPTIONAL PACKAGE DATA
        dlls: no  [skipping due to configuration]

running build_ext
building 'matplotlib.ft2font' extension
creating build
creating build/temp.linux-x86_64-3.8
creating build/temp.linux-x86_64-3.8/src
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -frtti -fexceptions -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/png/armeabi-v7a__ndk_target_21/png -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/freetype/armeabi-v7a__ndk_target_21/freetype/include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -fPIC -DFREETYPE_BUILD_TYPE=system -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ft2font_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/numpy/core/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c src/checkdep_freetype2.c -o build/temp.linux-x86_64-3.8/src/checkdep_freetype2.o
src/checkdep_freetype2.c:7:9: warning: Compiling with FreeType version 2.10.1.
      [-W#pragma-messages]
#pragma message("Compiling with FreeType version " \
        ^
1 warning generated.
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -frtti -fexceptions -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/png/armeabi-v7a__ndk_target_21/png -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/freetype/armeabi-v7a__ndk_target_21/freetype/include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -fPIC -DFREETYPE_BUILD_TYPE=system -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ft2font_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/numpy/core/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c src/ft2font.cpp -o build/temp.linux-x86_64-3.8/src/ft2font.o
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -frtti -fexceptions -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/png/armeabi-v7a__ndk_target_21/png -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/freetype/armeabi-v7a__ndk_target_21/freetype/include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -fPIC -DFREETYPE_BUILD_TYPE=system -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ft2font_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/numpy/core/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c src/ft2font_wrapper.cpp -o build/temp.linux-x86_64-3.8/src/ft2font_wrapper.o
In file included from src/ft2font_wrapper.cpp:4:
In file included from src/py_converters.h:18:
In file included from src/_backend_agg_basic_types.h:9:
In file included from extern/agg24-svn/include/agg_color_rgba.h:28:
extern/agg24-svn/include/agg_basics.h:231:13: warning: 'register' storage class
      specifier is deprecated and incompatible with C++17
      [-Wdeprecated-register]
            register unsigned q = a * b + (1 << (Shift-1));
            ^~~~~~~~~
In file included from src/ft2font_wrapper.cpp:4:
In file included from src/py_converters.h:18:
In file included from src/_backend_agg_basic_types.h:11:
In file included from src/path_converters.h:8:
In file included from extern/agg24-svn/include/agg_path_storage.h:23:
In file included from extern/agg24-svn/include/agg_bezier_arc.h:24:
In file included from extern/agg24-svn/include/agg_conv_transform.h:23:
extern/agg24-svn/include/agg_trans_affine.h:295:9: warning: 'register' storage
      class specifier is deprecated and incompatible with C++17
      [-Wdeprecated-register]
        register double tmp = *x;
        ^~~~~~~~~
extern/agg24-svn/include/agg_trans_affine.h:303:9: warning: 'register' storage
      class specifier is deprecated and incompatible with C++17
      [-Wdeprecated-register]
        register double tmp = *x;
        ^~~~~~~~~
extern/agg24-svn/include/agg_trans_affine.h:311:9: warning: 'register' storage
      class specifier is deprecated and incompatible with C++17
      [-Wdeprecated-register]
        register double d = determinant_reciprocal();
        ^~~~~~~~~
extern/agg24-svn/include/agg_trans_affine.h:312:9: warning: 'register' storage
      class specifier is deprecated and incompatible with C++17
      [-Wdeprecated-register]
        register double a = (*x - tx) * d;
        ^~~~~~~~~
extern/agg24-svn/include/agg_trans_affine.h:313:9: warning: 'register' storage
      class specifier is deprecated and incompatible with C++17
      [-Wdeprecated-register]
        register double b = (*y - ty) * d;
        ^~~~~~~~~
6 warnings generated.
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -frtti -fexceptions -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/png/armeabi-v7a__ndk_target_21/png -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/freetype/armeabi-v7a__ndk_target_21/freetype/include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -fPIC -DFREETYPE_BUILD_TYPE=system -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ft2font_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/numpy/core/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c src/mplutils.cpp -o build/temp.linux-x86_64-3.8/src/mplutils.o
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -frtti -fexceptions -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/png/armeabi-v7a__ndk_target_21/png -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/freetype/armeabi-v7a__ndk_target_21/freetype/include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -fPIC -DFREETYPE_BUILD_TYPE=system -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ft2font_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/numpy/core/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c src/py_converters.cpp -o build/temp.linux-x86_64-3.8/src/py_converters.o
In file included from src/py_converters.cpp:3:
In file included from src/py_converters.h:18:
In file included from src/_backend_agg_basic_types.h:9:
In file included from extern/agg24-svn/include/agg_color_rgba.h:28:
extern/agg24-svn/include/agg_basics.h:231:13: warning: 'register' storage class
      specifier is deprecated and incompatible with C++17
      [-Wdeprecated-register]
            register unsigned q = a * b + (1 << (Shift-1));
            ^~~~~~~~~
In file included from src/py_converters.cpp:3:
In file included from src/py_converters.h:18:
In file included from src/_backend_agg_basic_types.h:11:
In file included from src/path_converters.h:8:
In file included from extern/agg24-svn/include/agg_path_storage.h:23:
In file included from extern/agg24-svn/include/agg_bezier_arc.h:24:
In file included from extern/agg24-svn/include/agg_conv_transform.h:23:
extern/agg24-svn/include/agg_trans_affine.h:295:9: warning: 'register' storage
      class specifier is deprecated and incompatible with C++17
      [-Wdeprecated-register]
        register double tmp = *x;
        ^~~~~~~~~
extern/agg24-svn/include/agg_trans_affine.h:303:9: warning: 'register' storage
      class specifier is deprecated and incompatible with C++17
      [-Wdeprecated-register]
        register double tmp = *x;
        ^~~~~~~~~
extern/agg24-svn/include/agg_trans_affine.h:311:9: warning: 'register' storage
      class specifier is deprecated and incompatible with C++17
      [-Wdeprecated-register]
        register double d = determinant_reciprocal();
        ^~~~~~~~~
extern/agg24-svn/include/agg_trans_affine.h:312:9: warning: 'register' storage
      class specifier is deprecated and incompatible with C++17
      [-Wdeprecated-register]
        register double a = (*x - tx) * d;
        ^~~~~~~~~
extern/agg24-svn/include/agg_trans_affine.h:313:9: warning: 'register' storage
      class specifier is deprecated and incompatible with C++17
      [-Wdeprecated-register]
        register double b = (*y - ty) * d;
        ^~~~~~~~~
6 warnings generated.
creating build/lib.linux-x86_64-3.8
creating build/lib.linux-x86_64-3.8/matplotlib
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -L/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/libs_collections/myapp/armeabi-v7a -L/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/libs/armeabi-v7a -L/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/android-build -lpython3.8 -L/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/libs/armeabi-v7a -lc++_shared -L/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/png/armeabi-v7a__ndk_target_21/png/.libs -L/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/freetype/armeabi-v7a__ndk_target_21/freetype/objs/.libs -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -frtti -fexceptions -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/png/armeabi-v7a__ndk_target_21/png -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/freetype/armeabi-v7a__ndk_target_21/freetype/include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include build/temp.linux-x86_64-3.8/src/checkdep_freetype2.o build/temp.linux-x86_64-3.8/src/ft2font.o build/temp.linux-x86_64-3.8/src/ft2font_wrapper.o build/temp.linux-x86_64-3.8/src/mplutils.o build/temp.linux-x86_64-3.8/src/py_converters.o -lfreetype -lz -o build/lib.linux-x86_64-3.8/matplotlib/ft2font.cpython-38-x86_64-linux-gnu.so
building 'matplotlib._png' extension
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -frtti -fexceptions -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/png/armeabi-v7a__ndk_target_21/png -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/freetype/armeabi-v7a__ndk_target_21/freetype/include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__png_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/numpy/core/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c src/checkdep_libpng.c -o build/temp.linux-x86_64-3.8/src/checkdep_libpng.o -I/usr/include/libpng15
src/checkdep_libpng.c:2:9: warning: Compiling with libpng version 1.6.37.
      [-W#pragma-messages]
#pragma message("Compiling with libpng version " PNG_LIBPNG_VER_STRING ".")
        ^
1 warning generated.
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -frtti -fexceptions -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/png/armeabi-v7a__ndk_target_21/png -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/freetype/armeabi-v7a__ndk_target_21/freetype/include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__png_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/numpy/core/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c src/_png.cpp -o build/temp.linux-x86_64-3.8/src/_png.o -I/usr/include/libpng15
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -frtti -fexceptions -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/png/armeabi-v7a__ndk_target_21/png -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/freetype/armeabi-v7a__ndk_target_21/freetype/include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__png_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/numpy/core/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c src/mplutils.cpp -o build/temp.linux-x86_64-3.8/src/mplutils.o -I/usr/include/libpng15
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -L/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/libs_collections/myapp/armeabi-v7a -L/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/libs/armeabi-v7a -L/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/android-build -lpython3.8 -L/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/libs/armeabi-v7a -lc++_shared -L/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/png/armeabi-v7a__ndk_target_21/png/.libs -L/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/freetype/armeabi-v7a__ndk_target_21/freetype/objs/.libs -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -frtti -fexceptions -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/png/armeabi-v7a__ndk_target_21/png -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/freetype/armeabi-v7a__ndk_target_21/freetype/include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include build/temp.linux-x86_64-3.8/src/checkdep_libpng.o build/temp.linux-x86_64-3.8/src/_png.o build/temp.linux-x86_64-3.8/src/mplutils.o -o build/lib.linux-x86_64-3.8/matplotlib/_png.cpython-38-x86_64-linux-gnu.so -lpng15
/home/vitit/.buildozer/android/platform/android-ndk-r19c/toolchains/llvm/prebuilt/linux-x86_64/bin/../lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/bin/ld: error: cannot find -lpng15
clang++: error: linker command failed with exit code 1 (use -v to see invocation)
error: command '/home/vitit/.buildozer/android/platform/android-ndk-r19c/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++' failed with exit status 1


  STDERR:

Traceback (most recent call last):
  File "/home/vitit/miniconda3/envs/kivy-env/lib/python3.9/runpy.py", line 197, in _run_module_as_main
    return _run_code(code, main_globals, None,
  File "/home/vitit/miniconda3/envs/kivy-env/lib/python3.9/runpy.py", line 87, in _run_code
    exec(code, run_globals)
  File "/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android/pythonforandroid/toolchain.py", line 1276, in <module>
    main()
  File "/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android/pythonforandroid/entrypoints.py", line 18, in main
    ToolchainCL()
  File "/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android/pythonforandroid/toolchain.py", line 725, in __init__
    getattr(self, command)(args)
  File "/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android/pythonforandroid/toolchain.py", line 153, in wrapper_func
    build_dist_from_args(ctx, dist, args)
  File "/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android/pythonforandroid/toolchain.py", line 212, in build_dist_from_args
    build_recipes(build_order, python_modules, ctx,
  File "/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android/pythonforandroid/build.py", line 580, in build_recipes
    recipe.build_arch(arch)
  File "/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android/pythonforandroid/recipe.py", line 1011, in build_arch
    self.build_compiled_components(arch)
  File "/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android/pythonforandroid/recipe.py", line 1022, in build_compiled_components
    shprint(hostpython, 'setup.py', self.build_cmd, '-v',
  File "/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/python-for-android/pythonforandroid/logger.py", line 167, in shprint
    for line in output:
  File "/home/vitit/miniconda3/envs/kivy-env/lib/python3.9/site-packages/sh.py", line 953, in next
    self.wait()
  File "/home/vitit/miniconda3/envs/kivy-env/lib/python3.9/site-packages/sh.py", line 879, in wait
    self.handle_command_exit_code(exit_code)
  File "/home/vitit/miniconda3/envs/kivy-env/lib/python3.9/site-packages/sh.py", line 905, in handle_command_exit_code
    raise exc
sh.ErrorReturnCode_1: 

  RAN: /home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build/python3 setup.py build_ext -v

  STDOUT:
================================================================================
Edit setup.cfg to change the build options

BUILDING MATPLOTLIB
  matplotlib: yes [3.1.3]
      python: yes [3.8.9 (default, Oct  1 2021, 17:09:12)  [GCC 4.8.5 20150623
                  (Red Hat 4.8.5-11)]]
    platform: yes [linux]

OPTIONAL SUBPACKAGES
 sample_data: no  [skipping due to configuration]
       tests: no  [skipping due to configuration]

OPTIONAL BACKEND EXTENSIONS
         agg: yes [installing]
       tkagg: no  [Disabled by patching during Android build]
      macosx: no  [skipping due to configuration]

OPTIONAL PACKAGE DATA
        dlls: no  [skipping due to configuration]

running build_ext
building 'matplotlib.ft2font' extension
creating build
creating build/temp.linux-x86_64-3.8
creating build/temp.linux-x86_64-3.8/src
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -frtti -fexceptions -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/png/armeabi-v7a__ndk_target_21/png -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/freetype/armeabi-v7a__ndk_target_21/freetype/include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -fPIC -DFREETYPE_BUILD_TYPE=system -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ft2font_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/numpy/core/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c src/checkdep_freetype2.c -o build/temp.linux-x86_64-3.8/src/checkdep_freetype2.o
src/checkdep_freetype2.c:7:9: warning: Compiling with FreeType version 2.10.1.
      [-W#pragma-messages]
#pragma message("Compiling with FreeType version " \
        ^
1 warning generated.
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -frtti -fexceptions -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/png/armeabi-v7a__ndk_target_21/png -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/freetype/armeabi-v7a__ndk_target_21/freetype/include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -fPIC -DFREETYPE_BUILD_TYPE=system -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ft2font_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/numpy/core/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c src/ft2font.cpp -o build/temp.linux-x86_64-3.8/src/ft2font.o
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -frtti -fexceptions -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/png/armeabi-v7a__ndk_target_21/png -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/freetype/armeabi-v7a__ndk_target_21/freetype/include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -fPIC -DFREETYPE_BUILD_TYPE=system -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ft2font_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/numpy/core/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c src/ft2font_wrapper.cpp -o build/temp.linux-x86_64-3.8/src/ft2font_wrapper.o
In file included from src/ft2font_wrapper.cpp:4:
In file included from src/py_converters.h:18:
In file included from src/_backend_agg_basic_types.h:9:
In file included from extern/agg24-svn/include/agg_color_rgba.h:28:
extern/agg24-svn/include/agg_basics.h:231:13: warning: 'register' storage class
      specifier is deprecated and incompatible with C++17
      [-Wdeprecated-register]
            register unsigned q = a * b + (1 << (Shift-1));
            ^~~~~~~~~
In file included from src/ft2font_wrapper.cpp:4:
In file included from src/py_converters.h:18:
In file included from src/_backend_agg_basic_types.h:11:
In file included from src/path_converters.h:8:
In file included from extern/agg24-svn/include/agg_path_storage.h:23:
In file included from extern/agg24-svn/include/agg_bezier_arc.h:24:
In file included from extern/agg24-svn/include/agg_conv_transform.h:23:
extern/agg24-svn/include/agg_trans_affine.h:295:9: warning: 'register' storage
      class specifier is deprecated and incompatible with C++17
      [-Wdeprecated-register]
        register double tmp = *x;
        ^~~~~~~~~
extern/agg24-svn/include/agg_trans_affine.h:303:9: warning: 'register' storage
      class specifier is deprecated and incompatible with C++17
      [-Wdeprecated-register]
        register double tmp = *x;
        ^~~~~~~~~
extern/agg24-svn/include/agg_trans_affine.h:311:9: warning: 'register' storage
      class specifier is deprecated and incompatible with C++17
      [-Wdeprecated-register]
        register double d = determinant_reciprocal();
        ^~~~~~~~~
extern/agg24-svn/include/agg_trans_affine.h:312:9: warning: 'register' storage
      class specifier is deprecated and incompatible with C++17
      [-Wdeprecated-register]
        register double a = (*x - tx) * d;
        ^~~~~~~~~
extern/agg24-svn/include/agg_trans_affine.h:313:9: warning: 'register' storage
      class specifier is deprecated and incompatible with C++17
      [-Wdeprecated-register]
        register double b = (*y - ty) * d;
        ^~~~~~~~~
6 warnings generated.
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -frtti -fexceptions -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/png/armeabi-v7a__ndk_target_21/png -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/freetype/armeabi-v7a__ndk_target_21/freetype/include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -fPIC -DFREETYPE_BUILD_TYPE=system -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ft2font_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/numpy/core/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c src/mplutils.cpp -o build/temp.linux-x86_64-3.8/src/mplutils.o
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -frtti -fexceptions -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/png/armeabi-v7a__ndk_target_21/png -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/freetype/armeabi-v7a__ndk_target_21/freetype/include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -fPIC -DFREETYPE_BUILD_TYPE=system -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ft2font_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/numpy/core/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c src/py_converters.cpp -o build/temp.linux-x86_64-3.8/src/py_converters.o
In file included from src/py_converters.cpp:3:
In file included from src/py_converters.h:18:
In file included from src/_backend_agg_basic_types.h:9:
In file included from extern/agg24-svn/include/agg_color_rgba.h:28:
extern/agg24-svn/include/agg_basics.h:231:13: warning: 'register' storage class
      specifier is deprecated and incompatible with C++17
      [-Wdeprecated-register]
            register unsigned q = a * b + (1 << (Shift-1));
            ^~~~~~~~~
In file included from src/py_converters.cpp:3:
In file included from src/py_converters.h:18:
In file included from src/_backend_agg_basic_types.h:11:
In file included from src/path_converters.h:8:
In file included from extern/agg24-svn/include/agg_path_storage.h:23:
In file included from extern/agg24-svn/include/agg_bezier_arc.h:24:
In file included from extern/agg24-svn/include/agg_conv_transform.h:23:
extern/agg24-svn/include/agg_trans_affine.h:295:9: warning: 'register' storage
      class specifier is deprecated and incompatible with C++17
      [-Wdeprecated-register]
        register double tmp = *x;
        ^~~~~~~~~
extern/agg24-svn/include/agg_trans_affine.h:303:9: warning: 'register' storage
      class specifier is deprecated and incompatible with C++17
      [-Wdeprecated-register]
        register double tmp = *x;
        ^~~~~~~~~
extern/agg24-svn/include/agg_trans_affine.h:311:9: warning: 'register' storage
      class specifier is deprecated and incompatible with C++17
      [-Wdeprecated-register]
        register double d = determinant_reciprocal();
        ^~~~~~~~~
extern/agg24-svn/include/agg_trans_affine.h:312:9: warning: 'register' storage
      class specifier is deprecated and incompatible with C++17
      [-Wdeprecated-register]
        register double a = (*x - tx) * d;
        ^~~~~~~~~
extern/agg24-svn/include/agg_trans_affine.h:313:9: warning: 'register' storage
      class specifier is deprecated and incompatible with C++17
      [-Wdeprecated-register]
        register double b = (*y - ty) * d;
        ^~~~~~~~~
6 warnings generated.
creating build/lib.linux-x86_64-3.8
creating build/lib.linux-x86_64-3.8/matplotlib
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -L/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/libs_collections/myapp/armeabi-v7a -L/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/libs/armeabi-v7a -L/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/android-build -lpython3.8 -L/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/libs/armeabi-v7a -lc++_shared -L/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/png/armeabi-v7a__ndk_target_21/png/.libs -L/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/freetype/armeabi-v7a__ndk_target_21/freetype/objs/.libs -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -frtti -fexceptions -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/png/armeabi-v7a__ndk_target_21/png -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/freetype/armeabi-v7a__ndk_target_21/freetype/include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include build/temp.linux-x86_64-3.8/src/checkdep_freetype2.o build/temp.linux-x86_64-3.8/src/ft2font.o build/temp.linux-x86_64-3.8/src/ft2font_wrapper.o build/temp.linux-x86_64-3.8/src/mplutils.o build/temp.linux-x86_64-3.8/src/py_converters.o -lfreetype -lz -o build/lib.linux-x86_64-3.8/matplotlib/ft2font.cpython-38-x86_64-linux-gnu.so
building 'matplotlib._png' extension
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -frtti -fexceptions -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/png/armeabi-v7a__ndk_target_21/png -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/freetype/armeabi-v7a__ndk_target_21/freetype/include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__png_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/numpy/core/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c src/checkdep_libpng.c -o build/temp.linux-x86_64-3.8/src/checkdep_libpng.o -I/usr/include/libpng15
src/checkdep_libpng.c:2:9: warning: Compiling with libpng version 1.6.37.
      [-W#pragma-messages]
#pragma message("Compiling with libpng version " PNG_LIBPNG_VER_STRING ".")
        ^
1 warning generated.
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -frtti -fexceptions -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/png/armeabi-v7a__ndk_target_21/png -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/freetype/armeabi-v7a__ndk_target_21/freetype/include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__png_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/numpy/core/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c src/_png.cpp -o build/temp.linux-x86_64-3.8/src/_png.o -I/usr/include/libpng15
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -frtti -fexceptions -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/png/armeabi-v7a__ndk_target_21/png -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/freetype/armeabi-v7a__ndk_target_21/freetype/include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib__png_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/numpy/core/include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c src/mplutils.cpp -o build/temp.linux-x86_64-3.8/src/mplutils.o -I/usr/include/libpng15
/home/vitit/.buildozer/android/platform/android-ndk-r19c/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 -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -L/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/libs_collections/myapp/armeabi-v7a -L/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/libs/armeabi-v7a -L/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/android-build -lpython3.8 -L/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/libs/armeabi-v7a -lc++_shared -L/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/png/armeabi-v7a__ndk_target_21/png/.libs -L/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/freetype/armeabi-v7a__ndk_target_21/freetype/objs/.libs -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include -frtti -fexceptions -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/png/armeabi-v7a__ndk_target_21/png -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/freetype/armeabi-v7a__ndk_target_21/freetype/include -DANDROID -D__ANDROID_API__=21 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sysroot/usr/include/arm-linux-androideabi -I/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.8 -I/home/vitit/.buildozer/android/platform/android-ndk-r19c/sources/cxx-stl/llvm-libc++/include build/temp.linux-x86_64-3.8/src/checkdep_libpng.o build/temp.linux-x86_64-3.8/src/_png.o build/temp.linux-x86_64-3.8/src/mplutils.o -o build/lib.linux-x86_64-3.8/matplotlib/_png.cpython-38-x86_64-linux-gnu.so -lpng15
/home/vitit/.buildozer/android/platform/android-ndk-r19c/toolchains/llvm/prebuilt/linux-x86_64/bin/../lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/bin/ld: error: cannot find -lpng15
clang++: error: linker command failed with exit code 1 (use -v to see invocation)
error: command '/home/vitit/.buildozer/android/platform/android-ndk-r19c/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++' failed with exit status 1


  STDERR:

# Command failed: /home/vitit/miniconda3/envs/kivy-env/bin/python -m pythonforandroid.toolchain create --dist_name=myapp --bootstrap=sdl2 --requirements=python3,kivy,matplotlib --arch armeabi-v7a --copy-libs --color=always --storage-dir="/home/vitit/Source/emtf90-kivy-test/.buildozer/android/platform/build-armeabi-v7a" --ndk-api=21
# ENVIRONMENT:
#     XDG_SESSION_ID = '73875'
#     TERM = 'dumb'
#     SHELL = '/bin/bash'
#     SSH_CLIENT = '10.129.210.46 62823 22'
#     CONDA_SHLVL = '2'
#     CONDA_PROMPT_MODIFIER = '(kivy-env) '
#     QTDIR = '/usr/lib64/qt-3.3'
#     QTINC = '/usr/lib64/qt-3.3/include'
#     SSH_TTY = '/dev/pts/3'
#     LC_ALL = 'en_US.utf8'
#     QT_GRAPHICSSYSTEM_CHECKED = '1'
#     USER = 'vitit'
#     LS_COLORS = ''
#     CONDA_EXE = '/home/vitit/miniconda3/bin/conda'
#     ENV = "''"
#     SSH_AUTH_SOCK = '/tmp/ssh-wdZTxIuE14/agent.4383'
#     TERMCAP = ''
#     TMOUT = '0'
#     PAGER = 'cat'
#     COLUMNS = '134'
#     _CE_CONDA = ''
#     CONDA_PREFIX_1 = '/home/vitit/miniconda3'
#     PATH = '/home/vitit/.buildozer/android/platform/apache-ant-1.9.4/bin:/home/vitit/bin:/home/vitit/miniconda3/envs/kivy-env/bin:/home/vitit/miniconda3/condabin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/bin:/sbin'
#     CONDA_PREFIX = '/home/vitit/miniconda3/envs/kivy-env'
#     PWD = '/home/vitit/Source/emtf90-kivy-test'
#     JAVA_HOME = '/usr/lib/jvm/java-1.8.0-openjdk/'
#     LANG = 'en_US.UTF-8'
#     KDEDIRS = '/usr'
#     PS3 = ''
#     _CE_M = ''
#     SHLVL = '3'
#     HOME = '/home/vitit'
#     CONDA_PYTHON_EXE = '/home/vitit/miniconda3/bin/python'
#     LOGNAME = 'vitit'
#     QTLIB = '/usr/lib64/qt-3.3/lib'
#     LC_CTYPE = "''"
#     SSH_CONNECTION = '10.129.210.46 62823 128.193.72.16 22'
#     CONDA_DEFAULT_ENV = 'kivy-env'
#     LESSOPEN = '||/usr/bin/lesspipe.sh %s'
#     PROMPT_COMMAND = ''
#     XDG_RUNTIME_DIR = '/run/user/14111'
#     QT_PLUGIN_PATH = '/usr/lib64/kde4/plugins:/usr/lib/kde4/plugins'
#     INSIDE_EMACS = '27.2,comint'
#     HISTFILE = '~/.tramp_history'
#     _ = '/home/vitit/miniconda3/envs/kivy-env/bin/buildozer'
#     PACKAGES_PATH = '/home/vitit/.buildozer/android/packages'
#     ANDROIDSDK = '/home/vitit/.buildozer/android/platform/android-sdk'
#     ANDROIDNDK = '/home/vitit/.buildozer/android/platform/android-ndk-r19c'
#     ANDROIDAPI = '27'
#     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
@misl6
Copy link
Member

misl6 commented Jul 21, 2022

The issue seems fixed in the recently released python-for-android and buildozer versions, feel free to re-open the issue if it persists on your side.

@misl6 misl6 closed this as completed Jul 21, 2022
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

2 participants