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

Is buildozer compatible with Python 3.7 ? #1048

Closed
hvitis opened this issue Apr 2, 2020 · 1 comment
Closed

Is buildozer compatible with Python 3.7 ? #1048

hvitis opened this issue Apr 2, 2020 · 1 comment

Comments

@hvitis
Copy link

hvitis commented Apr 2, 2020

  • Python: 3.7.7
  • OS: MacOS
  • Buildozer: 1.0

Description

I get build successful. I copy the android apk. I install it on different phones. I click to open it and I get immediately app closed.

When I run logcat I'm getting some errors like:

(all log on the bottom of the issue)

I've tried running deploy with default and other settings in spec file. I've tried running with older versions of python but that failed even more so because I'm new to Mac and new to Kivy I am not sure about question simple as that:

is Kivy/buildozer compatible with python 3.7?
Or maybe you know what is the reason of my failure?
I'm using java_home -v 1.8 (MacOS)

buildozer.spec

Command:

buildozer android debug run

getting warning:
[WARNING]: lld not found, linking without it. Consider installing lld if linker errors occur.

Can it be that?

Spec file:

[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

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

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

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

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

Putting here logs from build AND logcat since build runs with success


# Check configuration tokens
# Ensure build layout
# Create directory /Users/hvitis/Programming/Python/app/.buildozer
# Create directory /Users/hvitis/Programming/Python/app/.buildozer/applibs
# Create directory /Users/hvitis/Programming/Python/app/.buildozer/android/platform
# Create directory /Users/hvitis/Programming/Python/app/.buildozer/android/app
# Check configuration tokens
# Read available permissions from api-versions.xml
# Preparing build
# Check requirements for android
# Search for Git (git)
#  -> found at /usr/bin/git
# Search for Cython (cython)
#  -> found at /opt/anaconda3/bin/cython
# Search for Java compiler (javac)
#  -> found at /System/Library/Frameworks/JavaVM.framework/Versions/A/Commands/javac
# Search for Java keytool (keytool)
#  -> found at /System/Library/Frameworks/JavaVM.framework/Versions/A/Commands/keytool
# Install platform
# Run 'git clone -b master --single-branch https://github.com/kivy/python-for-android.git python-for-android'
# Cwd /Users/hvitis/Programming/Python/app/.buildozer/android/platform
Cloning into 'python-for-android'...
# Run '/opt/anaconda3/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"\' \'pytoml\' \'virtualenv\''
# Cwd None
# Apache ANT found at /Users/hvitis/.buildozer/android/platform/apache-ant-1.9.4
# Android SDK found at /Users/hvitis/.buildozer/android/platform/android-sdk
# Recommended android's NDK version by p4a is: 19b
# Android NDK found at /Users/hvitis/.buildozer/android/platform/android-ndk-r19b
# Installing/updating SDK platform tools if necessary
# Run '/Users/hvitis/.buildozer/android/platform/android-sdk/tools/bin/sdkmanager tools platform-tools'
# Cwd /Users/hvitis/.buildozer/android/platform/android-sdk
Warning: File /Users/hvitis/.android/repositories.cfg could not be loaded.      
[=======================================] 100% Computing updates...             
# Run '/Users/hvitis/.buildozer/android/platform/android-sdk/tools/bin/sdkmanager --update'
# Cwd /Users/hvitis/.buildozer/android/platform/android-sdk
Warning: File /Users/hvitis/.android/repositories.cfg could not be loaded.      
[=======================================] 100% Computing updates...             
# Updating SDK build tools if necessary
# Run '/Users/hvitis/.buildozer/android/platform/android-sdk/tools/bin/sdkmanager --list'
# Cwd /Users/hvitis/.buildozer/android/platform/android-sdk
Warning: File /Users/hvitis/.android/repositories.cfg could not be loaded.      
Installed packages:=====================] 100% Computing updates...             
  Path                   | Version    | Description                    | Location               
  -------                | -------    | -------                        | -------                
  build-tools;30.0.0-rc2 | 30.0.0 rc2 | Android SDK Build-Tools 30-rc2 | build-tools/30.0.0-rc2/
  platform-tools         | 29.0.6     | Android SDK Platform-Tools     | platform-tools/        
  platforms;android-27   | 3          | Android SDK Platform 27        | platforms/android-27/  
  tools                  | 26.1.1     | Android SDK Tools 26.1.1       | 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-rc1                                                                   | 30.0.0 rc1   | Android SDK Build-Tools 30-rc1                                      
  build-tools;30.0.0-rc2                                                                   | 30.0.0 rc2   | Android SDK Build-Tools 30-rc2                                      
  cmake;3.10.2.4988404                                                                     | 3.10.2       | CMake 3.10.2.4988404                                                
  cmake;3.6.4111459                                                                        | 3.6.4111459  | CMake 3.6.4111459                                                   
  cmdline-tools;1.0                                                                        | 1.0          | Android SDK Command-line Tools                                      
  cmdline-tools;latest                                                                     | 1.0          | Android SDK Command-line Tools (latest)                             
  docs                                                                                     | 1            | Documentation for Android SDK                                       
  emulator                                                                                 | 30.0.5       | Android Emulator                                                    
  extras;android;gapid;1                                                                   | 1.0.3        | GPU Debugging tools                                                 
  extras;android;gapid;3                                                                   | 3.1.0        | GPU Debugging tools                                                 
  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;intel;Hardware_Accelerated_Execution_Manager                                      | 7.5.1        | Intel x86 Emulator Accelerator (HAXM installer)                     
  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                                  
  lldb;2.0                                                                                 | 2.0.2558144  | LLDB 2.0                                                            
  lldb;2.1                                                                                 | 2.1.2852477  | LLDB 2.1                                                            
  lldb;2.2                                                                                 | 2.2.3271982  | LLDB 2.2                                                            
  lldb;2.3                                                                                 | 2.3.3614996  | LLDB 2.3                                                            
  lldb;3.0                                                                                 | 3.0.4213617  | LLDB 3.0                                                            
  lldb;3.1                                                                                 | 3.1.4508709  | LLDB 3.1                                                            
  ndk-bundle                                                                               | 21.0.6113669 | 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                                     
  patcher;v4                                                                               | 1            | SDK Patch Applier v4                                                
  platform-tools                                                                           | 29.0.6       | 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                                                                     | 4            | Android SDK Platform 29                                             
  platforms;android-7                                                                      | 3            | Android SDK Platform 7                                              
  platforms;android-8                                                                      | 3            | Android SDK Platform 8                                              
  platforms;android-9                                                                      | 2            | Android SDK Platform 9                                              
  platforms;android-R                                                                      | 2            | Android SDK Platform R                                              
  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                                              
  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                                                     | 5            | 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                                                 | 6            | 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                                                     | 6            | 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                                                 | 6            | 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                                                     | 4            | 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                                                 | 6            | 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                                         | 38           | Google APIs ARM EABI v7a System Image                               
  system-images;android-19;google_apis;x86                                                 | 38           | 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                                         | 30           | Google APIs ARM EABI v7a System Image                               
  system-images;android-21;google_apis;x86                                                 | 30           | Google APIs Intel x86 Atom System Image                             
  system-images;android-21;google_apis;x86_64                                              | 30           | 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                                         | 24           | Google APIs ARM EABI v7a System Image                               
  system-images;android-22;google_apis;x86                                                 | 24           | Google APIs Intel x86 Atom System Image                             
  system-images;android-22;google_apis;x86_64                                              | 24           | 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                                                  | 19           | 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                                         | 31           | Google APIs ARM EABI v7a System Image                               
  system-images;android-23;google_apis;x86                                                 | 31           | Google APIs Intel x86 Atom System Image                             
  system-images;android-23;google_apis;x86_64                                              | 31           | Google APIs Intel x86 Atom_64 System Image                          
  system-images;android-24;android-tv;x86                                                  | 20           | 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                                           | 25           | Google APIs ARM 64 v8a System Image                                 
  system-images;android-24;google_apis;armeabi-v7a                                         | 25           | Google APIs ARM EABI v7a System Image                               
  system-images;android-24;google_apis;x86                                                 | 25           | Google APIs Intel x86 Atom System Image                             
  system-images;android-24;google_apis;x86_64                                              | 25           | 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                                                  | 14           | 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                                           | 16           | Google APIs ARM 64 v8a System Image                                 
  system-images;android-25;google_apis;armeabi-v7a                                         | 16           | Google APIs ARM EABI v7a System Image                               
  system-images;android-25;google_apis;x86                                                 | 16           | Google APIs Intel x86 Atom System Image                             
  system-images;android-25;google_apis;x86_64                                              | 16           | 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                                                  | 12           | 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                                                 | 14           | Google APIs Intel x86 Atom System Image                             
  system-images;android-26;google_apis;x86_64                                              | 14           | 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                                                  | 7            | 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                                                 | 9            | 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                                                  | 8            | Android TV Intel x86 Atom System Image                              
  system-images;android-28;android-wear-cn;x86                                             | 3            | China version of Wear OS Intel x86 Atom System Image                
  system-images;android-28;android-wear;x86                                                | 3            | 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                                                 | 10           | Google APIs Intel x86 Atom System Image                             
  system-images;android-28;google_apis;x86_64                                              | 9            | 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;default;x86                                                     | 7            | Intel x86 Atom System Image                                         
  system-images;android-29;default;x86_64                                                  | 7            | Intel x86 Atom_64 System Image                                      
  system-images;android-29;google_apis;x86                                                 | 9            | Google APIs Intel x86 Atom System Image                             
  system-images;android-29;google_apis;x86_64                                              | 9            | Google APIs Intel x86 Atom_64 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-Q;android-tv;x86                                                   | 1            | Android TV Intel x86 Atom System Image                              
  system-images;android-R;google_apis;x86                                                  | 2            | Google APIs Intel x86 Atom System Image                             
  system-images;android-R;google_apis;x86_64                                               | 2            | Google APIs Intel x86 Atom_64 System Image                          
  system-images;android-R;google_apis_playstore;x86                                        | 2            | Google Play Intel x86 Atom System Image                             
  system-images;android-R;google_apis_playstore;x86_64                                     | 2            | Google Play Intel x86 Atom_64 System Image                          

# Check that aidl can be executed
# Search for Aidl
# Run '/Users/hvitis/.buildozer/android/platform/android-sdk/build-tools/30.0.0-rc2/aidl'
# Cwd None
# Downloading platform api target if necessary
# Android packages installation done.
# Check application requirements
# Check garden requirements
# Compile platform
# Run '/opt/anaconda3/bin/python -m pythonforandroid.toolchain create --dist_name=myapp --bootstrap=sdl2 --requirements=python3,kivy --arch armeabi-v7a --copy-libs --color=always --storage-dir="/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a" --ndk-api=21'
# Cwd /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android
/Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android/pythonforandroid/toolchain.py:85: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses
  import imp
[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: /Users/hvitis/.buildozer/android/platform/android-ndk-r19b
[INFO]:    Found NDK version 19b
[INFO]:    Getting NDK API version (i.e. minimum supported API) from user argument
[INFO]:    Found virtualenv at /opt/anaconda3/bin/virtualenv
[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: ['hostpython3', 'libffi', 'openssl', 'sdl2_image', 'sdl2_mixer', 'sdl2_ttf', 'sqlite3', 'python3', 'sdl2', 'setuptools', 'six', 'pyjnius', 'android', 'kivy']
[INFO]:    The selected bootstrap is sdl2
[INFO]:    # Creating dist with sdl2 bootstrap
[INFO]:    Dist will have name myapp and requirements (python3, kivy)
[INFO]:    Dist contains the following requirements as recipes: ['hostpython3', 'libffi', 'openssl', 'sdl2_image', 'sdl2_mixer', 'sdl2_ttf', 'sqlite3', 'python3', 'sdl2', 'setuptools', 'six', 'pyjnius', 'android', 'kivy']
[INFO]:    Dist will also contain modules () installed from pip
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2-python3
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android
[INFO]:    Recipe build order is ['hostpython3', 'libffi', 'openssl', 'sdl2_image', 'sdl2_mixer', 'sdl2_ttf', 'sqlite3', 'python3', 'sdl2', 'setuptools', 'six', 'pyjnius', 'android', 'kivy']
[INFO]:    # Downloading recipes 
[INFO]:    Downloading hostpython3
[INFO]:    -> running mkdir -p /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/packages/hostpython3
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/packages/hostpython3
[INFO]:    -> running basename https://www.python.org/ftp/python/3.7.1/Python-3.7.1.tgz
[INFO]:    -> running rm -f .mark-Python-3.7.1.tgz                                                                                                                                           
[INFO]:    Downloading hostpython3 from https://www.python.org/ftp/python/3.7.1/Python-3.7.1.tgz
[INFO]:    -> running touch .mark-Python-3.7.1.tgz
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android
[INFO]:    Downloading libffi
[INFO]:    -> running mkdir -p /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/packages/libffi
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/packages/libffi
[INFO]:    -> running basename https://github.com/libffi/libffi/archive/8fa8837.tar.gz
[INFO]:    -> running rm -f .mark-8fa8837.tar.gz                                                                                                                                             
[INFO]:    Downloading libffi from https://github.com/libffi/libffi/archive/8fa8837.tar.gz
[INFO]:    -> running touch .mark-8fa8837.tar.gz
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android
[INFO]:    Downloading openssl
[INFO]:    -> running mkdir -p /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/packages/openssl
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/packages/openssl
[INFO]:    -> running basename https://www.openssl.org/source/openssl-1.1.1f.tar.gz
[INFO]:    -> running rm -f .mark-openssl-1.1.1f.tar.gz                                                                                                                                      
[INFO]:    Downloading openssl from https://www.openssl.org/source/openssl-1.1.1f.tar.gz
[INFO]:    -> running touch .mark-openssl-1.1.1f.tar.gz
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android
[INFO]:    Downloading sdl2_image
[INFO]:    -> running mkdir -p /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/packages/sdl2_image
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.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 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android
[INFO]:    Downloading sdl2_mixer
[INFO]:    -> running mkdir -p /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/packages/sdl2_mixer
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.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 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android
[INFO]:    Downloading sdl2_ttf
[INFO]:    -> running mkdir -p /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/packages/sdl2_ttf
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/packages/sdl2_ttf
[INFO]:    -> running basename https://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-2.0.14.tar.gz
[INFO]:    -> running rm -f .mark-SDL2_ttf-2.0.14.tar.gz                                                                                                                                     
[INFO]:    Downloading sdl2_ttf from https://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-2.0.14.tar.gz
[INFO]:    -> running touch .mark-SDL2_ttf-2.0.14.tar.gz
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android
[INFO]:    Downloading sqlite3
[INFO]:    -> running mkdir -p /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/packages/sqlite3
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/packages/sqlite3
[INFO]:    -> running basename https://www.sqlite.org/2016/sqlite-amalgamation-3150100.zip
[INFO]:    -> running rm -f .mark-sqlite-amalgamation-3150100.zip                                                                                                                            
[INFO]:    Downloading sqlite3 from https://www.sqlite.org/2016/sqlite-amalgamation-3150100.zip
[INFO]:    -> running touch .mark-sqlite-amalgamation-3150100.zip
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android
[INFO]:    Downloading python3
[INFO]:    -> running mkdir -p /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/packages/python3
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/packages/python3
[INFO]:    -> running basename https://www.python.org/ftp/python/3.7.1/Python-3.7.1.tgz
[INFO]:    -> running rm -f .mark-Python-3.7.1.tgz                                                                                                                                           
[INFO]:    Downloading python3 from https://www.python.org/ftp/python/3.7.1/Python-3.7.1.tgz
[INFO]:    -> running touch .mark-Python-3.7.1.tgz
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android
[INFO]:    Downloading sdl2
[INFO]:    -> running mkdir -p /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/packages/sdl2
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.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 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android
[INFO]:    Downloading setuptools
[INFO]:    -> running mkdir -p /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/packages/setuptools
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/packages/setuptools
[INFO]:    -> running basename https://pypi.python.org/packages/source/s/setuptools/setuptools-40.9.0.zip
[INFO]:    -> running rm -f .mark-setuptools-40.9.0.zip                                                                                                                                      
[INFO]:    Downloading setuptools from https://pypi.python.org/packages/source/s/setuptools/setuptools-40.9.0.zip
[INFO]:    -> running touch .mark-setuptools-40.9.0.zip
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android
[INFO]:    Downloading six
[INFO]:    -> running mkdir -p /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/packages/six
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/packages/six
[INFO]:    -> running basename https://pypi.python.org/packages/source/s/six/six-1.10.0.tar.gz
[INFO]:    -> running rm -f .mark-six-1.10.0.tar.gz                                                                                                                                          
[INFO]:    Downloading six from https://pypi.python.org/packages/source/s/six/six-1.10.0.tar.gz
[INFO]:    -> running touch .mark-six-1.10.0.tar.gz
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android
[INFO]:    Downloading pyjnius
[INFO]:    -> running mkdir -p /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/packages/pyjnius
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/packages/pyjnius
[INFO]:    -> running basename https://github.com/kivy/pyjnius/archive/6553ad4.zip
[INFO]:    -> running rm -f .mark-6553ad4.zip                                                                                                                                                
[INFO]:    Downloading pyjnius from https://github.com/kivy/pyjnius/archive/6553ad4.zip
[INFO]:    -> running touch .mark-6553ad4.zip
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.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 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/packages/kivy
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/packages/kivy
[INFO]:    -> running basename https://github.com/kivy/kivy/archive/1.11.1.zip
[INFO]:    -> running rm -f .mark-1.11.1.zip                                                                                                                                                 
[INFO]:    Downloading kivy from https://github.com/kivy/kivy/archive/1.11.1.zip
[INFO]:    -> running touch .mark-1.11.1.zip
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android
[INFO]:    # Building all recipes for arch armeabi-v7a
[INFO]:    # Unpacking recipes
[INFO]:    Unpacking hostpython3 for armeabi-v7a
[INFO]:    -> running basename https://www.python.org/ftp/python/3.7.1/Python-3.7.1.tgz
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop                                    
[INFO]:    -> running mv Python-3.7.1 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android
[INFO]:    Unpacking libffi for armeabi-v7a
[INFO]:    -> running basename https://github.com/libffi/libffi/archive/8fa8837.tar.gz
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/libffi/armeabi-v7a__ndk_target_21                      
[INFO]:    -> running mv libffi-8fa88373a1d433c675b11200ccd58418e91f81e4 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/...(and 53 more)
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android
[INFO]:    Unpacking openssl for armeabi-v7a
[INFO]:    -> running basename https://www.openssl.org/source/openssl-1.1.1f.tar.gz
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/openssl/armeabi-v7a__ndk_target_21                     
[INFO]:    -> running mv openssl-1.1.1f /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/openssl/armeabi-v7a_...(and 25 more)
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.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 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2-python3/jni                                   
[INFO]:    -> running mv SDL2_image-2.0.4 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2-python3/jni/SDL2_image
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.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 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2-python3/jni                                   
[INFO]:    -> running mv SDL2_mixer-2.0.4 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2-python3/jni/SDL2_mixer
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.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.14.tar.gz
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2-python3/jni                                   
[INFO]:    -> running mv SDL2_ttf-2.0.14 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2-python3/jni/SDL2_ttf
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android
[INFO]:    Unpacking sqlite3 for armeabi-v7a
[INFO]:    -> running basename https://www.sqlite.org/2016/sqlite-amalgamation-3150100.zip
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/sqlite3/armeabi-v7a__ndk_target_21                     
[INFO]:    -> running mv sqlite-amalgamation-3150100 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/sqlite3...(and 35 more)
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android
[INFO]:    Unpacking python3 for armeabi-v7a
[INFO]:    -> running basename https://www.python.org/ftp/python/3.7.1/Python-3.7.1.tgz
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21
[INFO]:    -> running mv Python-3.7.1 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl...(and 43 more)
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.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 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2-python3/jni                                   
[INFO]:    -> running mv SDL2-2.0.9 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2-python3/jni/SDL
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android
[INFO]:    Unpacking setuptools for armeabi-v7a
[INFO]:    -> running basename https://pypi.python.org/packages/source/s/setuptools/setuptools-40.9.0.zip
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/setuptools-python3/armeabi-v7a__ndk_target_21          
[INFO]:    -> running mv setuptools-40.9.0 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/setuptools-python...(and 39 more)
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.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.10.0.tar.gz
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/six-python3/armeabi-v7a__ndk_target_21                 
[INFO]:    -> running mv six-1.10.0 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/six-python3/armeabi-v7a__ndk_target_21/six
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android
[INFO]:    Unpacking pyjnius for armeabi-v7a
[INFO]:    -> running basename https://github.com/kivy/pyjnius/archive/6553ad4.zip
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/pyjnius-python3-sdl2/armeabi-v7a__ndk_target_21        
[INFO]:    -> running mv pyjnius-6553ad4409782fd1c37247c64736f4aa698a00b2 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build...(and 69 more)
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android
[INFO]:    -> running rm -rf /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/android-python3-sdl2/armeabi-v7...(and 24 more)
[INFO]:    -> running cp -a /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android/pythonforandroid/recipes/android/src /Users/hvitis...(and 144 more)
[INFO]:    Unpacking kivy for armeabi-v7a
[INFO]:    -> running basename https://github.com/kivy/kivy/archive/1.11.1.zip
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/kivy-python3/armeabi-v7a__ndk_target_21                
[INFO]:    -> running mv kivy-1.11.1 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/kivy-python3/armeabi-v7...(and 21 more)
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android
[INFO]:    # Prebuilding recipes
[INFO]:    Prebuilding hostpython3 for armeabi-v7a
[INFO]:    hostpython3 has no prebuild_armeabi_v7a, skipping
[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 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/libffi/armeabi-v7a__ndk_ta...(and 163 more)
[INFO]:    -> running touch /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/libffi/armeabi-v7a__ndk_target_21/libffi/.patched          
[INFO]:    Prebuilding openssl for armeabi-v7a
[INFO]:    openssl 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 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2-python3/jni/SDL2_...(and 158 more)
[INFO]:    Applying patch extra_cflags.patch                                                                                                                                                 
[INFO]:    -> running patch -t -d /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2-python3/jni/SDL2_...(and 151 more)
[INFO]:    -> running touch /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2-python3/jni/SDL2_image/.patched                   
[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 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2-python3/jni/SDL2_...(and 170 more)
[INFO]:    -> running touch /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2-python3/jni/SDL2_mixer/.patched                   
[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/fix-ctypes-util-find-library.patch
[INFO]:    -> running patch -t -d /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sql...(and 206 more)
[INFO]:    Applying patch patches/fix-zlib-version.patch                                                                                                                                     
[INFO]:    -> running patch -t -d /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sql...(and 194 more)
[INFO]:    -> running touch /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/a...(and 42 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 six for armeabi-v7a
[INFO]:    six has no prebuild_armeabi_v7a, skipping
[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 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/pyjnius-python3-sdl2/armea...(and 178 more)
[INFO]:    -> running touch /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/pyjnius-python3-sdl2/armeabi-v7a...(and 32 more)           
[INFO]:    Prebuilding android for armeabi-v7a
[INFO]:    android has no prebuild_armeabi_v7a, skipping
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/android-python3-sdl2/armeabi-v7a__ndk_target_21/android
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android
[INFO]:    Prebuilding kivy for armeabi-v7a
[INFO]:    kivy has no prebuild_armeabi_v7a, skipping
[INFO]:    # Building recipes
[INFO]:    Building hostpython3 for armeabi-v7a
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build
[INFO]:    -> running configure
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3                        
[INFO]:    -> running cp Modules/Setup.dist /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desk...(and 42 more)
[INFO]:    -> running make -j 8 -C /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostp...(and 19 more)
[INFO]:    -> running cp /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/nat...(and 175 more)          
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android
[INFO]:    Building libffi for armeabi-v7a
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.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=/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/oth...(and 85 more)           
[INFO]:    -> running make -j 8 libffi.la                                                                                                                                                    
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android                                                                          
[INFO]:    -> running cp /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/libffi/armeabi-v7a__ndk_target_21/l...(and 145 more)
[INFO]:    Building openssl for armeabi-v7a
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.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 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/openssl/armeabi-v7a__ndk_t...(and 163 more)
[INFO]:    -> running make build_libs                                                                                                                                                        
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android                                                                          
[INFO]:    -> running cp /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/openssl/armeabi-v7a__ndk_target_21/...(and 311 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 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/sqlite3/armeabi-v7a__ndk_target_21/sqlite3
[INFO]:    -> running ndk-build V=1 APP_PLATFORM=android-21 APP_ABI=armeabi-v7a
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android                                                                          
[INFO]:    Building python3 for armeabi-v7a
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/android-build
[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]:    -> running configure --host=arm-linux-androideabi --build=x86_64-apple-darwin18.7.0 --enable-shared --enable-ipv6 ac_cv_file__dev_ptmx=yes ac_cv_file__...(and 269 more)
[INFO]:    -> running make all -j 8 INSTSONAME=libpython3.7m.so                                                                                                                              
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android                                                                          
[INFO]:    Building sdl2 for armeabi-v7a
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2-python3/jni
[INFO]:    -> running ndk-build V=1
           working: /Users/hvitis/.buildozer/android/platform/android-ndk-r19b/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang -MMD -MP -MF /Users/hvitis/Programming/Pyt...(and 1092 more) 

[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.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 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/setuptools-python3/armeabi-v7a__ndk_target_21/setuptools
[INFO]:    -> running python3 setup.py install -O2 --root=/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/python-installs...(and 22 more)
[INFO]:    -> running python3 setup.py install -O2 --root=/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/ho...(and 74 more)           
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.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 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/six-python3/armeabi-v7a__ndk_target_21/six
[INFO]:    -> running python3 setup.py install -O2 --root=/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/python-installs...(and 22 more)
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.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 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/pyjnius-python3-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
[INFO]:    First build appeared to complete correctly, skipping manualcythonising.                                                                                                           
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/pyjnius-python3-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 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/pyjnius-python3-sdl2/armeabi-v7a__ndk_target_21/pyjnius
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android
[INFO]:    Installing pyjnius into site-packages
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/pyjnius-python3-sdl2/armeabi-v7a__ndk_target_21/pyjnius
[INFO]:    -> running python3 setup.py install -O2 --root=/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/python-installs...(and 22 more)
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.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 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/android-python3-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
Exception in thread background thread for pid 30287:                                                                                                                                         
Traceback (most recent call last):
  File "/opt/anaconda3/lib/python3.7/threading.py", line 926, in _bootstrap_inner
    self.run()
  File "/opt/anaconda3/lib/python3.7/threading.py", line 870, in run
    self._target(*self._args, **self._kwargs)
  File "/opt/anaconda3/lib/python3.7/site-packages/sh.py", line 1540, in wrap
    fn(*args, **kwargs)
  File "/opt/anaconda3/lib/python3.7/site-packages/sh.py", line 2459, in background_thread
    handle_exit_code(exit_code)
  File "/opt/anaconda3/lib/python3.7/site-packages/sh.py", line 2157, in fn
    return self.command.handle_command_exit_code(exit_code)
  File "/opt/anaconda3/lib/python3.7/site-packages/sh.py", line 815, in handle_command_exit_code
    raise exc
sh.ErrorReturnCode_1: 

  RAN: /Users/hvitis/Programming/Python/app/.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.macosx-10.14-x86_64-3.7
creating build/temp.macosx-10.14-x86_64-3.7/android
/Users/hvitis/.buildozer/android/platform/android-ndk-r19b/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/Users/hvitis/.buildozer/android/platform/android-ndk-r19b/sysroot/usr/include/arm-linux-androideabi -I/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.7 -I/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c android/_android.c -o build/temp.macosx-10.14-x86_64-3.7/android/_android.o
clang: error: no such file or directory: 'android/_android.c'
clang: error: no input files
error: command '/Users/hvitis/.buildozer/android/platform/android-ndk-r19b/toolchains/llvm/prebuilt/darwin-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_sound.pyx
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./android/_android_sound.pyx

[INFO]:    Cythonize android/_android.pyx                                                                                                                                                    
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./android/_android.pyx
[INFO]:    Cythonize android/_android_billing.pyx                                                                                                                                            
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./android/_android_billing.pyx
[INFO]:    -> running python3 setup.py build_ext -v                                                                                                                                          
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/android-python3-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 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/android-python3-sdl2/armeabi-v7a__ndk_target_21/android
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android
[INFO]:    Installing android into site-packages
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/android-python3-sdl2/armeabi-v7a__ndk_target_21/android
[INFO]:    -> running python3 setup.py install -O2 --root=/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/python-installs...(and 22 more)
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.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 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/kivy-python3/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
Exception in thread background thread for pid 30331:                                                                                                                                         
Traceback (most recent call last):
  File "/opt/anaconda3/lib/python3.7/threading.py", line 926, in _bootstrap_inner
    self.run()
  File "/opt/anaconda3/lib/python3.7/threading.py", line 870, in run
    self._target(*self._args, **self._kwargs)
  File "/opt/anaconda3/lib/python3.7/site-packages/sh.py", line 1540, in wrap
    fn(*args, **kwargs)
  File "/opt/anaconda3/lib/python3.7/site-packages/sh.py", line 2459, in background_thread
    handle_exit_code(exit_code)
  File "/opt/anaconda3/lib/python3.7/site-packages/sh.py", line 2157, in fn
    return self.command.handle_command_exit_code(exit_code)
  File "/opt/anaconda3/lib/python3.7/site-packages/sh.py", line 815, in handle_command_exit_code
    raise exc
sh.ErrorReturnCode_1: 

  RAN: /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build/python3 setup.py build_ext -v

  STDOUT:
Using setuptools
Environ change use_sdl2 -> True
Not using cython on android
Using this graphics system: OpenGL ES 2
SDL2 found via pkg-config
SDL2: found SDL header at /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2-python3/jni/SDL/include/SDL.h
SDL2: found SDL_mixer header at /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2-python3/jni/SDL2_mixer/SDL_mixer.h
SDL2: found SDL_ttf header at /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2-python3/jni/SDL2_ttf/SDL_ttf.h
SDL2: found SDL_image header at /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2-python3/jni/SDL2_image/SDL_image.h
fatal: not a git repository (or any of the parent directories): .git
running build_ext
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
 * 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
creating build/temp.macosx-10.14-x86_64-3.7
creating build/temp.macosx-10.14-x86_64-3.7/kivy
/Users/hvitis/.buildozer/android/platform/android-ndk-r19b/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -D__ANDROID_API__=21 -I/Users/hvitis/.buildozer/android/platform/android-ndk-r19b/sysroot/usr/include/arm-linux-androideabi -I/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/include/python3.7 -Ikivy/include -I/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c kivy/_event.c -o build/temp.macosx-10.14-x86_64-3.7/kivy/_event.o
clang: error: no such file or directory: 'kivy/_event.c'
clang: error: no input files
 error: command '/Users/hvitis/.buildozer/android/platform/android-ndk-r19b/toolchains/llvm/prebuilt/darwin-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/weakproxy.pyx
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/weakproxy.pyx

[INFO]:    Cythonize kivy/properties.pyx                                                                                                                                                     
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/properties.pyx
[INFO]:    Cythonize kivy/_clock.pyx                                                                                                                                                         
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/_clock.pyx
[INFO]:    Cythonize kivy/_event.pyx                                                                                                                                                         
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/_event.pyx
[INFO]:    Cythonize kivy/core/camera/camera_avfoundation.pyx                                                                                                                                
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/core/camera/camera_avfoundation.pyx
[INFO]:    Cythonize kivy/core/image/img_imageio.pyx                                                                                                                                         
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/core/image/img_imageio.pyx
[INFO]:    Cythonize kivy/core/image/_img_sdl2.pyx                                                                                                                                           
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/core/image/_img_sdl2.pyx
[INFO]:    Cythonize kivy/core/audio/audio_sdl2.pyx                                                                                                                                          
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/core/audio/audio_sdl2.pyx
[INFO]:    Cythonize kivy/core/window/window_info.pyx                                                                                                                                        
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/core/window/window_info.pyx
[INFO]:    Cythonize kivy/core/window/_window_sdl2.pyx                                                                                                                                       
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/core/window/_window_sdl2.pyx
[INFO]:    Cythonize kivy/core/text/_text_pango.pyx                                                                                                                                          
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/core/text/_text_pango.pyx
[INFO]:    Cythonize kivy/core/text/text_layout.pyx                                                                                                                                          
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/core/text/text_layout.pyx
[INFO]:    Cythonize kivy/core/text/_text_sdl2.pyx                                                                                                                                           
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/core/text/_text_sdl2.pyx
[INFO]:    Cythonize kivy/core/clipboard/_clipboard_sdl2.pyx                                                                                                                                 
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/core/clipboard/_clipboard_sdl2.pyx
[INFO]:    Cythonize kivy/lib/gstplayer/_gstplayer.pyx                                                                                                                                       
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/lib/gstplayer/_gstplayer.pyx
[INFO]:    Cythonize kivy/lib/vidcore_lite/egl.pyx                                                                                                                                           
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/lib/vidcore_lite/egl.pyx
[INFO]:    Cythonize kivy/lib/vidcore_lite/bcm.pyx                                                                                                                                           
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/lib/vidcore_lite/bcm.pyx
[INFO]:    Cythonize kivy/graphics/instructions.pyx                                                                                                                                          
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/graphics/instructions.pyx
[INFO]:    Cythonize kivy/graphics/stencil_instructions.pyx                                                                                                                                  
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/graphics/stencil_instructions.pyx
[INFO]:    Cythonize kivy/graphics/vertex.pyx                                                                                                                                                
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/graphics/vertex.pyx
[INFO]:    Cythonize kivy/graphics/tesselator.pyx                                                                                                                                            
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/graphics/tesselator.pyx
[INFO]:    Cythonize kivy/graphics/cgl.pyx                                                                                                                                                   
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/graphics/cgl.pyx
[INFO]:    Cythonize kivy/graphics/opengl_utils.pyx                                                                                                                                          
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/graphics/opengl_utils.pyx
[INFO]:    Cythonize kivy/graphics/gl_instructions.pyx                                                                                                                                       
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/graphics/gl_instructions.pyx
[INFO]:    Cythonize kivy/graphics/vbo.pyx                                                                                                                                                   
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/graphics/vbo.pyx
[INFO]:    Cythonize kivy/graphics/scissor_instructions.pyx                                                                                                                                  
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/graphics/scissor_instructions.pyx
[INFO]:    Cythonize kivy/graphics/transformation.pyx                                                                                                                                        
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/graphics/transformation.pyx
[INFO]:    Cythonize kivy/graphics/opengl.pyx                                                                                                                                                
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/graphics/opengl.pyx
[INFO]:    Cythonize kivy/graphics/texture.pyx                                                                                                                                               
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/graphics/texture.pyx
[INFO]:    Cythonize kivy/graphics/vertex_instructions.pyx                                                                                                                                   
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/graphics/vertex_instructions.pyx
[INFO]:    Cythonize kivy/graphics/buffer.pyx                                                                                                                                                
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/graphics/buffer.pyx
[INFO]:    Cythonize kivy/graphics/shader.pyx                                                                                                                                                
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/graphics/shader.pyx
[INFO]:    Cythonize kivy/graphics/context_instructions.pyx                                                                                                                                  
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/graphics/context_instructions.pyx
[INFO]:    Cythonize kivy/graphics/context.pyx                                                                                                                                               
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/graphics/context.pyx
[INFO]:    Cythonize kivy/graphics/fbo.pyx                                                                                                                                                   
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/graphics/fbo.pyx
[INFO]:    Cythonize kivy/graphics/compiler.pyx                                                                                                                                              
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/graphics/compiler.pyx
[INFO]:    Cythonize kivy/graphics/svg.pyx                                                                                                                                                   
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/graphics/svg.pyx
[INFO]:    Cythonize kivy/graphics/cgl_backend/cgl_sdl2.pyx                                                                                                                                  
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/graphics/cgl_backend/cgl_sdl2.pyx
[INFO]:    Cythonize kivy/graphics/cgl_backend/cgl_gl.pyx                                                                                                                                    
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/graphics/cgl_backend/cgl_gl.pyx
[INFO]:    Cythonize kivy/graphics/cgl_backend/cgl_glew.pyx                                                                                                                                  
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/graphics/cgl_backend/cgl_glew.pyx
[INFO]:    Cythonize kivy/graphics/cgl_backend/cgl_debug.pyx                                                                                                                                 
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/graphics/cgl_backend/cgl_debug.pyx
[INFO]:    Cythonize kivy/graphics/cgl_backend/cgl_mock.pyx                                                                                                                                  
[INFO]:    -> running python3 -m Cython.Build.Cythonize ./kivy/graphics/cgl_backend/cgl_mock.pyx
[INFO]:    -> directory context .                                                                                                                                                            
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/kivy-python3/armeabi-v7a__ndk_target_21/kivy
[INFO]:    -> running python3 setup.py build_ext -v
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/kivy-python3/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 /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/kivy-python3/armeabi-v7a__ndk_target_21/kivy
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android
[INFO]:    Installing kivy into site-packages
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/kivy-python3/armeabi-v7a__ndk_target_21/kivy
[INFO]:    -> running python3 setup.py install -O2 --root=/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/python-installs...(and 22 more)
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android                                                                          
[INFO]:    # Biglinking object files
[WARNING]: Context's python recipe found, skipping biglink (will this work?)
[INFO]:    # Postbuilding recipes
[INFO]:    Postbuilding hostpython3 for armeabi-v7a
[INFO]:    Postbuilding libffi for armeabi-v7a
[INFO]:    Postbuilding openssl for armeabi-v7a
[INFO]:    Postbuilding sdl2_image for armeabi-v7a
[INFO]:    Postbuilding sdl2_mixer for armeabi-v7a
[INFO]:    Postbuilding sdl2_ttf for armeabi-v7a
[INFO]:    Postbuilding sqlite3 for armeabi-v7a
[INFO]:    Postbuilding python3 for armeabi-v7a
[INFO]:    Postbuilding sdl2 for armeabi-v7a
[INFO]:    Postbuilding setuptools for armeabi-v7a
[INFO]:    Postbuilding six for armeabi-v7a
[INFO]:    Postbuilding pyjnius for armeabi-v7a
[INFO]:    Copying pyjnius java class to classes build dir
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/pyjnius-python3-sdl2/armeabi-v7a__ndk_target_21/pyjnius
[INFO]:    -> running cp -a jnius/src/org /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/javaclasses/myapp
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android
[INFO]:    Postbuilding android for armeabi-v7a
[INFO]:    Postbuilding kivy for armeabi-v7a
[INFO]:    # Installing pure Python modules
[INFO]:    *** PYTHON PACKAGE / PROJECT INSTALL STAGE ***
[INFO]:    No Python modules and no setup.py to process, skipping
[INFO]:    # Creating Android project (sdl2)
[INFO]:    Copying SDL2/gradle build for armeabi-v7a
[INFO]:    -> running rm -rf /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/dists/myapp__armeabi-v7a
[INFO]:    -> running cp -r /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/bootstrap_builds/sdl2-python3 /Users/hvitis/P...(and 92 more)
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/dists/myapp__armeabi-v7a
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/dists/myapp__armeabi-v7a
[INFO]:    Copying Python distribution
[INFO]:    Copying libs
[INFO]:    -> running cp -a /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/libs_collections/myapp/armeabi-v7a/libffi.so libs/armeabi-v7a
CUTTING COMMENTv7a__ndk_target_21/python3/Lib/lib2to3/tests/__init__.py'...
Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/lib2to3/tests/__main__.py'...
Listing '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/lib2to3/tests/data'...
Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/lib2to3/tests/data/bom.py'...
***   File "/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/lib2to3/tests/data/bom.py", line 2
    print "BOM BOOM!"
                    ^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print("BOM BOOM!")?

Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/lib2to3/tests/data/crlf.py'...
***   File "/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/lib2to3/tests/data/crlf.py", line 1
    print "hi"
             ^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print("hi")?

Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/lib2to3/tests/data/different_encoding.py'...
***   File "/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/lib2to3/tests/data/different_encoding.py", line 3
    print u'ßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞ'
                                                                          ^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(u'ßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞ')?

Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/lib2to3/tests/data/false_encoding.py'...
***   File "/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/lib2to3/tests/data/false_encoding.py", line 2
    print '#coding=0'
                    ^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print('#coding=0')?

Listing '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/lib2to3/tests/data/py2_test_grammar.py", line 31
    self.assertEquals(0377, 255)
                         ^
SyntaxError: invalid token


SyntaxError: unknown encoding: uft-8

Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/bad_coding2.py'...
***   File "/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/bad_coding2.py", line 0
SyntaxError: encoding problem: utf8 with BOM

Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/bad_getattr.py'...
Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/bad_getattr2.py'...
Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/bad_getattr3.py'...
Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/badsyntax_3131.py'...
***   File "/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/badsyntax_3131.py", line 2
    € = 2
    ^
SyntaxError: invalid character in identifier

Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/badsyntax_future10.py'...
***   File "/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/badsyntax_future10.py", line 3
    from __future__ import print_function
                                        ^
SyntaxError: from __future__ imports must occur at the beginning of the file

Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/badsyntax_future3.py'...
***   File "/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/badsyntax_future3.py", line 3
    from __future__ import rested_snopes
                                       ^
SyntaxError: future feature rested_snopes is not defined

Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/badsyntax_future4.py'...
***   File "/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/badsyntax_future4.py", line 3
    from __future__ import nested_scopes
                                       ^
SyntaxError: from __future__ imports must occur at the beginning of the file

Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/badsyntax_future5.py'...
***   File "/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/badsyntax_future5.py", line 4
    from __future__ import nested_scopes
                                       ^
SyntaxError: from __future__ imports must occur at the beginning of the file

Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/badsyntax_future6.py'...
***   File "/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/badsyntax_future6.py", line 3
    from __future__ import nested_scopes
                                       ^
SyntaxError: from __future__ imports must occur at the beginning of the file

Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/badsyntax_future7.py'...
***   File "/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/badsyntax_future7.py", line 3
    from __future__ import nested_scopes; import string; from __future__ import \
                                                        ^
SyntaxError: from __future__ imports must occur at the beginning of the file

Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/badsyntax_future8.py'...
***   File "/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/badsyntax_future8.py", line 3
    from __future__ import *
                           ^
SyntaxError: future feature * is not defined

Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/badsyntax_future9.py'...
***   File "/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/badsyntax_future9.py", line 3
    from __future__ import nested_scopes, braces
                                               ^
SyntaxError: not a chance

Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/badsyntax_pep3120.py'...
***   File "/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/badsyntax_pep3120.py", line 1
SyntaxError: (unicode error) 'utf-8' codec can't decode byte 0xf6 in position 1: invalid start byte

Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/bisect.py'...
Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/bytecode_helper.py'...
Listing '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/capath'...
Listing '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/cjkencodings'...
Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/coding20731.py'...
Listing '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/crashers'...
Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/crashers/bogus_code_obj.py'...
Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/crashers/gc_inspection.py'...
Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/crashers/infinite_loop_re.py'...
Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/crashers/mutation_inside_cyclegc.py'...
Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/crashers/recursive_call.py'...
Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/crashers/trace_at_recursion_limit.py'...
Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/crashers/underlying_dict.py'...
Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/curses_tests.py'...
Listing '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/data'...
Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/dataclass_module_1.py'...
Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/dataclass_module_1_str.py'...
Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/dataclass_module_2.py'...
Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-v7a__ndk_target_21/python3/Lib/test/dataclass_module_2_str.py'...
Compiling '/Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/armeabi-
[INFO]:    -> directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp
[INFO]:    Copy 563 files into the site-packages
[INFO]:     - copy ./six.pyc
[INFO]:     - copy ./easy_install.pyc
[INFO]:     - copy ./android-1.0-py3.7.egg-info
[INFO]:     - copy ./jnius_config.pyc
[INFO]:     - copy ./pyjnius-1.2.1.dev0-py3.7.egg-info/PKG-INFO
[INFO]:     - copy ./pyjnius-1.2.1.dev0-py3.7.egg-info/SOURCES.txt
[INFO]:     - copy ./pyjnius-1.2.1.dev0-py3.7.egg-info/requires.txt
[INFO]:     - copy ./pyjnius-1.2.1.dev0-py3.7.egg-info/top_level.txt
[INFO]:     - copy ./pyjnius-1.2.1.dev0-py3.7.egg-info/dependency_links.txt
[INFO]:     - copy ./usr/local/bin/easy_install
[INFO]:     - copy ./usr/local/bin/easy_install-3.7
[INFO]:     - copy ./Kivy-1.11.1-py3.7.egg-info/PKG-INFO
[INFO]:     - copy ./Kivy-1.11.1-py3.7.egg-info/SOURCES.txt
[INFO]:     - copy ./Kivy-1.11.1-py3.7.egg-info/requires.txt
[INFO]:     - copy ./Kivy-1.11.1-py3.7.egg-info/top_level.txt
[INFO]:     - copy ./Kivy-1.11.1-py3.7.egg-info/dependency_links.txt
[INFO]:     - copy ./kivy/parser.pyc
[INFO]:     - copy ./kivy/multistroke.pyc
[INFO]:     - copy ./kivy/app.pyc
[INFO]:     - copy ./kivy/properties.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/event.pyc
[INFO]:     - copy ./kivy/support.pyc
[INFO]:     - copy ./kivy/logger.pyc
[INFO]:     - copy ./kivy/_event.pxd
[INFO]:     - copy ./kivy/weakmethod.pyc
[INFO]:     - copy ./kivy/loader.pyc
[INFO]:     - copy ./kivy/factory.pyc
[INFO]:     - copy ./kivy/setupconfig.pyc
[INFO]:     - copy ./kivy/config.pyc
[INFO]:     - copy ./kivy/animation.pyc
[INFO]:     - copy ./kivy/vector.pyc
[INFO]:     - copy ./kivy/interactive.pyc
[INFO]:     - copy ./kivy/_event.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/cache.pyc
[INFO]:     - copy ./kivy/_clock.pxd
[INFO]:     - copy ./kivy/weakproxy.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/properties.pxd
[INFO]:     - copy ./kivy/resources.pyc
[INFO]:     - copy ./kivy/atlas.pyc
[INFO]:     - copy ./kivy/clock.pyc
[INFO]:     - copy ./kivy/metrics.pyc
[INFO]:     - copy ./kivy/base.pyc
[INFO]:     - copy ./kivy/context.pyc
[INFO]:     - copy ./kivy/version.pyc
[INFO]:     - copy ./kivy/_clock.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/__init__.pyc
[INFO]:     - copy ./kivy/gesture.pyc
[INFO]:     - copy ./kivy/geometry.pyc
[INFO]:     - copy ./kivy/utils.pyc
[INFO]:     - copy ./kivy/factory_registers.pyc
[INFO]:     - copy ./kivy/compat.pyc
[INFO]:     - copy ./kivy/tools/texturecompress.pyc
[INFO]:     - copy ./kivy/tools/kviewer.pyc
[INFO]:     - copy ./kivy/tools/stub-gl-debug.pyc
[INFO]:     - copy ./kivy/tools/benchmark.pyc
[INFO]:     - copy ./kivy/tools/changelog_parser.pyc
[INFO]:     - copy ./kivy/tools/__init__.pyc
[INFO]:     - copy ./kivy/tools/report.pyc
[INFO]:     - copy ./kivy/tools/generate-icons.pyc
[INFO]:     - copy ./kivy/tools/packaging/factory.pyc
[INFO]:     - copy ./kivy/tools/packaging/__init__.pyc
[INFO]:     - copy ./kivy/tools/packaging/pyinstaller_hooks/hook-kivy.pyc
[INFO]:     - copy ./kivy/tools/packaging/pyinstaller_hooks/__main__.pyc
[INFO]:     - copy ./kivy/tools/packaging/pyinstaller_hooks/__init__.pyc
[INFO]:     - copy ./kivy/tools/packaging/pyinstaller_hooks/pyi_rth_kivy.pyc
[INFO]:     - copy ./kivy/tools/highlight/kivy.tmLanguage
[INFO]:     - copy ./kivy/tools/highlight/kivy.json-tmlanguage
[INFO]:     - copy ./kivy/tools/highlight/kivy-mode.el
[INFO]:     - copy ./kivy/tools/highlight/kivy.vim
[INFO]:     - copy ./kivy/tools/highlight/__init__.pyc
[INFO]:     - copy ./kivy/tools/gles_compat/gl2.h
[INFO]:     - copy ./kivy/tools/gles_compat/subset_gles.pyc
[INFO]:     - copy ./kivy/tools/pep8checker/pep8kivy.pyc
[INFO]:     - copy ./kivy/tools/pep8checker/pre-commit.githook
[INFO]:     - copy ./kivy/tools/pep8checker/pep8.pyc
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/tab_btn_disabled.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/button_disabled_pressed.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/previous_normal.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/switch-button.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/bubble_arrow.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/action_item_down.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/splitter_disabled.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/filechooser_folder.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/tab_btn.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/textinput.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/bubble_btn.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/overflow.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/splitter_disabled_down.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/checkbox_off.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/button_disabled.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/tab_disabled.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/audio-volume-muted.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/filechooser_selected.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/button_pressed.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/slider_cursor_disabled.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/selector_left.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/splitter.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/media-playback-start.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/vkeyboard_key_down.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/splitter_grip_h.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/bubble.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/spinner_disabled.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/slider_cursor.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/image-missing.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/audio-volume-medium.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/checkbox_on.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/sliderh_background.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/media-playback-pause.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/textinput_disabled_active.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/progressbar.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/tab.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/sliderh_background_disabled.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/textinput_active.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/tab_btn_disabled_pressed.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/media-playback-stop.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/selector_middle.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/checkbox_radio_off.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/sliderv_background_disabled.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/modalview-background.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/action_group.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/checkbox_radio_disabled_off.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/tab_btn_pressed.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/audio-volume-low.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/checkbox_disabled_on.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/vkeyboard_disabled_key_down.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/selector_right.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/splitter_grip.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/ring.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/bubble_btn_pressed.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/splitter_down_h.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/splitter_disabled_down_h.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/checkbox_radio_disabled_on.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/spinner_pressed.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/player-play-overlay.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/splitter_h.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/splitter_disabled_h.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/tree_opened.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/splitter_down.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/action_item.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/tree_closed.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/audio-volume-high.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/switch-background_disabled.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/action_view.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/action_group_down.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/checkbox_radio_on.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/player-background.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/progressbar_background.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/sliderv_background.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/vkeyboard_disabled_key_normal.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/spinner.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/action_bar.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/textinput_disabled.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/vkeyboard_background.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/switch-background.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/separator.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/checkbox_disabled_off.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/vkeyboard_disabled_background.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/switch-button_disabled.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/vkeyboard_key_normal.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/filechooser_file.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/button.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/action_group_disabled.png
[INFO]:     - copy ./kivy/tools/theming/defaulttheme/close.png
[INFO]:     - copy ./kivy/core/__init__.pyc
[INFO]:     - copy ./kivy/core/video/video_ffpyplayer.pyc
[INFO]:     - copy ./kivy/core/video/video_null.pyc
[INFO]:     - copy ./kivy/core/video/video_gstplayer.pyc
[INFO]:     - copy ./kivy/core/video/__init__.pyc
[INFO]:     - copy ./kivy/core/video/video_ffmpeg.pyc
[INFO]:     - copy ./kivy/core/camera/camera_opencv.pyc
[INFO]:     - copy ./kivy/core/camera/camera_picamera.pyc
[INFO]:     - copy ./kivy/core/camera/__init__.pyc
[INFO]:     - copy ./kivy/core/camera/camera_gi.pyc
[INFO]:     - copy ./kivy/core/camera/camera_android.pyc
[INFO]:     - copy ./kivy/core/image/img_dds.pyc
[INFO]:     - copy ./kivy/core/image/img_sdl2.pyc
[INFO]:     - copy ./kivy/core/image/img_pil.pyc
[INFO]:     - copy ./kivy/core/image/_img_sdl2.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/core/image/img_tex.pyc
[INFO]:     - copy ./kivy/core/image/img_gif.pyc
[INFO]:     - copy ./kivy/core/image/__init__.pyc
[INFO]:     - copy ./kivy/core/image/img_ffpyplayer.pyc
[INFO]:     - copy ./kivy/core/image/img_pygame.pyc
[INFO]:     - copy ./kivy/core/audio/audio_gstplayer.pyc
[INFO]:     - copy ./kivy/core/audio/audio_sdl2.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/core/audio/__init__.pyc
[INFO]:     - copy ./kivy/core/audio/audio_avplayer.pyc
[INFO]:     - copy ./kivy/core/audio/audio_pygame.pyc
[INFO]:     - copy ./kivy/core/audio/audio_ffpyplayer.pyc
[INFO]:     - copy ./kivy/core/window/window_sdl2.pyc
[INFO]:     - copy ./kivy/core/window/_window_sdl2.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/core/window/window_pygame.pyc
[INFO]:     - copy ./kivy/core/window/window_attrs.pxi
[INFO]:     - copy ./kivy/core/window/window_egl_rpi.pyc
[INFO]:     - copy ./kivy/core/window/__init__.pyc
[INFO]:     - copy ./kivy/core/window/window_info.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/core/window/window_info.pxd
[INFO]:     - copy ./kivy/core/gl/__init__.pyc
[INFO]:     - copy ./kivy/core/text/text_pango.pyc
[INFO]:     - copy ./kivy/core/text/text_pil.pyc
[INFO]:     - copy ./kivy/core/text/text_layout.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/core/text/markup.pyc
[INFO]:     - copy ./kivy/core/text/text_pygame.pyc
[INFO]:     - copy ./kivy/core/text/text_layout.pxd
[INFO]:     - copy ./kivy/core/text/__init__.pyc
[INFO]:     - copy ./kivy/core/text/_text_sdl2.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/core/text/text_sdl2.pyc
[INFO]:     - copy ./kivy/core/spelling/spelling_enchant.pyc
[INFO]:     - copy ./kivy/core/spelling/__init__.pyc
[INFO]:     - copy ./kivy/core/spelling/spelling_osxappkit.pyc
[INFO]:     - copy ./kivy/core/clipboard/clipboard_winctypes.pyc
[INFO]:     - copy ./kivy/core/clipboard/clipboard_android.pyc
[INFO]:     - copy ./kivy/core/clipboard/clipboard_gtk3.pyc
[INFO]:     - copy ./kivy/core/clipboard/clipboard_nspaste.pyc
[INFO]:     - copy ./kivy/core/clipboard/clipboard_dbusklipper.pyc
[INFO]:     - copy ./kivy/core/clipboard/_clipboard_ext.pyc
[INFO]:     - copy ./kivy/core/clipboard/clipboard_sdl2.pyc
[INFO]:     - copy ./kivy/core/clipboard/__init__.pyc
[INFO]:     - copy ./kivy/core/clipboard/clipboard_dummy.pyc
[INFO]:     - copy ./kivy/core/clipboard/clipboard_pygame.pyc
[INFO]:     - copy ./kivy/core/clipboard/clipboard_xsel.pyc
[INFO]:     - copy ./kivy/core/clipboard/clipboard_xclip.pyc
[INFO]:     - copy ./kivy/core/clipboard/_clipboard_sdl2.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/input/recorder.pyc
[INFO]:     - copy ./kivy/input/factory.pyc
[INFO]:     - copy ./kivy/input/shape.pyc
[INFO]:     - copy ./kivy/input/motionevent.pyc
[INFO]:     - copy ./kivy/input/__init__.pyc
[INFO]:     - copy ./kivy/input/provider.pyc
[INFO]:     - copy ./kivy/input/providers/mtdev.pyc
[INFO]:     - copy ./kivy/input/providers/wm_touch.pyc
[INFO]:     - copy ./kivy/input/providers/leapfinger.pyc
[INFO]:     - copy ./kivy/input/providers/androidjoystick.pyc
[INFO]:     - copy ./kivy/input/providers/mactouch.pyc
[INFO]:     - copy ./kivy/input/providers/probesysfs.pyc
[INFO]:     - copy ./kivy/input/providers/tuio.pyc
[INFO]:     - copy ./kivy/input/providers/hidinput.pyc
[INFO]:     - copy ./kivy/input/providers/wm_common.pyc
[INFO]:     - copy ./kivy/input/providers/mouse.pyc
[INFO]:     - copy ./kivy/input/providers/__init__.pyc
[INFO]:     - copy ./kivy/input/providers/linuxwacom.pyc
[INFO]:     - copy ./kivy/input/providers/wm_pen.pyc
[INFO]:     - copy ./kivy/input/postproc/doubletap.pyc
[INFO]:     - copy ./kivy/input/postproc/retaintouch.pyc
[INFO]:     - copy ./kivy/input/postproc/__init__.pyc
[INFO]:     - copy ./kivy/input/postproc/calibration.pyc
[INFO]:     - copy ./kivy/input/postproc/tripletap.pyc
[INFO]:     - copy ./kivy/input/postproc/ignorelist.pyc
[INFO]:     - copy ./kivy/input/postproc/dejitter.pyc
[INFO]:     - copy ./kivy/uix/splitter.pyc
[INFO]:     - copy ./kivy/uix/scrollview.pyc
[INFO]:     - copy ./kivy/uix/settings.pyc
[INFO]:     - copy ./kivy/uix/rst.pyc
[INFO]:     - copy ./kivy/uix/recyclegridlayout.pyc
[INFO]:     - copy ./kivy/uix/recyclelayout.pyc
[INFO]:     - copy ./kivy/uix/anchorlayout.pyc
[INFO]:     - copy ./kivy/uix/textinput.pyc
[INFO]:     - copy ./kivy/uix/slider.pyc
[INFO]:     - copy ./kivy/uix/pagelayout.pyc
[INFO]:     - copy ./kivy/uix/filechooser.pyc
[INFO]:     - copy ./kivy/uix/recycleboxlayout.pyc
[INFO]:     - copy ./kivy/uix/gesturesurface.pyc
[INFO]:     - copy ./kivy/uix/floatlayout.pyc
[INFO]:     - copy ./kivy/uix/gridlayout.pyc
[INFO]:     - copy ./kivy/uix/scatterlayout.pyc
[INFO]:     - copy ./kivy/uix/actionbar.pyc
[INFO]:     - copy ./kivy/uix/effectwidget.pyc
[INFO]:     - copy ./kivy/uix/progressbar.pyc
[INFO]:     - copy ./kivy/uix/accordion.pyc
[INFO]:     - copy ./kivy/uix/bubble.pyc
[INFO]:     - copy ./kivy/uix/label.pyc
[INFO]:     - copy ./kivy/uix/dropdown.pyc
[INFO]:     - copy ./kivy/uix/stacklayout.pyc
[INFO]:     - copy ./kivy/uix/togglebutton.pyc
[INFO]:     - copy ./kivy/uix/video.pyc
[INFO]:     - copy ./kivy/uix/treeview.pyc
[INFO]:     - copy ./kivy/uix/switch.pyc
[INFO]:     - copy ./kivy/uix/videoplayer.pyc
[INFO]:     - copy ./kivy/uix/codeinput.pyc
[INFO]:     - copy ./kivy/uix/tabbedpanel.pyc
[INFO]:     - copy ./kivy/uix/sandbox.pyc
[INFO]:     - copy ./kivy/uix/layout.pyc
[INFO]:     - copy ./kivy/uix/popup.pyc
[INFO]:     - copy ./kivy/uix/__init__.pyc
[INFO]:     - copy ./kivy/uix/boxlayout.pyc
[INFO]:     - copy ./kivy/uix/relativelayout.pyc
[INFO]:     - copy ./kivy/uix/image.pyc
[INFO]:     - copy ./kivy/uix/modalview.pyc
[INFO]:     - copy ./kivy/uix/button.pyc
[INFO]:     - copy ./kivy/uix/screenmanager.pyc
[INFO]:     - copy ./kivy/uix/stencilview.pyc
[INFO]:     - copy ./kivy/uix/camera.pyc
[INFO]:     - copy ./kivy/uix/carousel.pyc
[INFO]:     - copy ./kivy/uix/vkeyboard.pyc
[INFO]:     - copy ./kivy/uix/widget.pyc
[INFO]:     - copy ./kivy/uix/colorpicker.pyc
[INFO]:     - copy ./kivy/uix/checkbox.pyc
[INFO]:     - copy ./kivy/uix/scatter.pyc
[INFO]:     - copy ./kivy/uix/spinner.pyc
[INFO]:     - copy ./kivy/uix/behaviors/focus.pyc
[INFO]:     - copy ./kivy/uix/behaviors/drag.pyc
[INFO]:     - copy ./kivy/uix/behaviors/compoundselection.pyc
[INFO]:     - copy ./kivy/uix/behaviors/cover.pyc
[INFO]:     - copy ./kivy/uix/behaviors/togglebutton.pyc
[INFO]:     - copy ./kivy/uix/behaviors/touchripple.pyc
[INFO]:     - copy ./kivy/uix/behaviors/__init__.pyc
[INFO]:     - copy ./kivy/uix/behaviors/emacs.pyc
[INFO]:     - copy ./kivy/uix/behaviors/button.pyc
[INFO]:     - copy ./kivy/uix/behaviors/knspace.pyc
[INFO]:     - copy ./kivy/uix/behaviors/codenavigation.pyc
[INFO]:     - copy ./kivy/uix/recycleview/datamodel.pyc
[INFO]:     - copy ./kivy/uix/recycleview/views.pyc
[INFO]:     - copy ./kivy/uix/recycleview/layout.pyc
[INFO]:     - copy ./kivy/uix/recycleview/__init__.pyc
[INFO]:     - copy ./kivy/garden/__init__.pyc
[INFO]:     - copy ./kivy/include/common_subset.h
[INFO]:     - copy ./kivy/include/config.h
[INFO]:     - copy ./kivy/include/config.pxi
[INFO]:     - copy ./kivy/include/gl_redirect.h
[INFO]:     - copy ./kivy/include/gl2platform.h
[INFO]:     - copy ./kivy/include/khrplatform.h
[INFO]:     - copy ./kivy/network/urlrequest.pyc
[INFO]:     - copy ./kivy/network/__init__.pyc
[INFO]:     - copy ./kivy/storage/jsonstore.pyc
[INFO]:     - copy ./kivy/storage/__init__.pyc
[INFO]:     - copy ./kivy/storage/redisstore.pyc
[INFO]:     - copy ./kivy/storage/dictstore.pyc
[INFO]:     - copy ./kivy/lang/parser.pyc
[INFO]:     - copy ./kivy/lang/builder.pyc
[INFO]:     - copy ./kivy/lang/__init__.pyc
[INFO]:     - copy ./kivy/lib/mtdev.pyc
[INFO]:     - copy ./kivy/lib/ddsfile.pyc
[INFO]:     - copy ./kivy/lib/__init__.pyc
[INFO]:     - copy ./kivy/lib/gstplayer/__init__.pyc
[INFO]:     - copy ./kivy/lib/vidcore_lite/bcm.pxd
[INFO]:     - copy ./kivy/lib/vidcore_lite/__init__.pyc
[INFO]:     - copy ./kivy/deps/__init__.pyc
[INFO]:     - copy ./kivy/graphics/cgl.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/graphics/buffer.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/graphics/img_tools.pxi
[INFO]:     - copy ./kivy/graphics/svg.pxd
[INFO]:     - copy ./kivy/graphics/context_instructions.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/graphics/compiler.pxd
[INFO]:     - copy ./kivy/graphics/opcodes.pxi
[INFO]:     - copy ./kivy/graphics/fbo.pxd
[INFO]:     - copy ./kivy/graphics/vertex.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/graphics/context.pxd
[INFO]:     - copy ./kivy/graphics/tesselator.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/graphics/context_instructions.pxd
[INFO]:     - copy ./kivy/graphics/scissor_instructions.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/graphics/shader.pxd
[INFO]:     - copy ./kivy/graphics/buffer.pxd
[INFO]:     - copy ./kivy/graphics/opengl.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/graphics/instructions.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/graphics/vertex_instructions.pxd
[INFO]:     - copy ./kivy/graphics/gl_debug_logger.pxi
[INFO]:     - copy ./kivy/graphics/context.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/graphics/texture.pxd
[INFO]:     - copy ./kivy/graphics/fbo.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/graphics/common.pxi
[INFO]:     - copy ./kivy/graphics/transformation.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/graphics/memory.pxi
[INFO]:     - copy ./kivy/graphics/vertex_instructions_line.pxi
[INFO]:     - copy ./kivy/graphics/transformation.pxd
[INFO]:     - copy ./kivy/graphics/compiler.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/graphics/vbo.pxd
[INFO]:     - copy ./kivy/graphics/__init__.pyc
[INFO]:     - copy ./kivy/graphics/opengl_utils.pxd
[INFO]:     - copy ./kivy/graphics/shader.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/graphics/gl_instructions.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/graphics/opengl_utils.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/graphics/vbo.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/graphics/opengl_utils_def.pxi
[INFO]:     - copy ./kivy/graphics/cgl.pxd
[INFO]:     - copy ./kivy/graphics/svg.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/graphics/tesselator.pxd
[INFO]:     - copy ./kivy/graphics/stencil_instructions.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/graphics/texture.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/graphics/vertex_instructions.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/graphics/vertex.pxd
[INFO]:     - copy ./kivy/graphics/instructions.pxd
[INFO]:     - copy ./kivy/graphics/stencil_instructions.pxd
[INFO]:     - copy ./kivy/graphics/cgl_backend/cgl_debug.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/graphics/cgl_backend/cgl_mock.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/graphics/cgl_backend/cgl_glew.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/graphics/cgl_backend/cgl_gl.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/graphics/cgl_backend/__init__.pyc
[INFO]:     - copy ./kivy/graphics/cgl_backend/cgl_sdl2.cpython-37m-darwin.so
[INFO]:     - copy ./kivy/modules/recorder.pyc
[INFO]:     - copy ./kivy/modules/webdebugger.pyc
[INFO]:     - copy ./kivy/modules/keybinding.pyc
[INFO]:     - copy ./kivy/modules/cursor.pyc
[INFO]:     - copy ./kivy/modules/inspector.pyc
[INFO]:     - copy ./kivy/modules/showborder.pyc
[INFO]:     - copy ./kivy/modules/touchring.pyc
[INFO]:     - copy ./kivy/modules/screen.pyc
[INFO]:     - copy ./kivy/modules/console.pyc
[INFO]:     - copy ./kivy/modules/_webdebugger.pyc
[INFO]:     - copy ./kivy/modules/__init__.pyc
[INFO]:     - copy ./kivy/modules/monitor.pyc
[INFO]:     - copy ./kivy/modules/joycursor.pyc
[INFO]:     - copy ./kivy/effects/dampedscroll.pyc
[INFO]:     - copy ./kivy/effects/kinetic.pyc
[INFO]:     - copy ./kivy/effects/opacityscroll.pyc
[INFO]:     - copy ./kivy/effects/__init__.pyc
[INFO]:     - copy ./kivy/effects/scroll.pyc
[INFO]:     - copy ./kivy/data/style.kv
[INFO]:     - copy ./kivy/data/settings_kivy.json
[INFO]:     - copy ./kivy/data/images/cursor.png
[INFO]:     - copy ./kivy/data/images/defaulttheme.atlas
[INFO]:     - copy ./kivy/data/images/testpattern.png
[INFO]:     - copy ./kivy/data/images/background.jpg
[INFO]:     - copy ./kivy/data/images/image-loading.gif
[INFO]:     - copy ./kivy/data/images/defaulttheme-0.png
[INFO]:     - copy ./kivy/data/images/defaultshape.png
[INFO]:     - copy ./kivy/data/keyboards/de.json
[INFO]:     - copy ./kivy/data/keyboards/qwerty.json
[INFO]:     - copy ./kivy/data/keyboards/fr_CH.json
[INFO]:     - copy ./kivy/data/keyboards/en_US.json
[INFO]:     - copy ./kivy/data/keyboards/de_CH.json
[INFO]:     - copy ./kivy/data/keyboards/qwertz.json
[INFO]:     - copy ./kivy/data/keyboards/azerty.json
[INFO]:     - copy ./kivy/data/glsl/header.vs
[INFO]:     - copy ./kivy/data/glsl/default.fs
[INFO]:     - copy ./kivy/data/glsl/default.vs
[INFO]:     - copy ./kivy/data/glsl/default.png
[INFO]:     - copy ./kivy/data/glsl/header.fs
[INFO]:     - copy ./kivy/data/logo/kivy-icon-32.png
[INFO]:     - copy ./kivy/data/logo/kivy-icon-24.png
[INFO]:     - copy ./kivy/data/logo/kivy-icon-256.png
[INFO]:     - copy ./kivy/data/logo/kivy-icon-48.png
[INFO]:     - copy ./kivy/data/logo/kivy-icon-512.png
[INFO]:     - copy ./kivy/data/logo/kivy-icon-64.png
[INFO]:     - copy ./kivy/data/logo/kivy-icon-128.png
[INFO]:     - copy ./kivy/data/logo/kivy-icon-16.png
[INFO]:     - copy ./kivy/data/fonts/Roboto-Regular.ttf
[INFO]:     - copy ./kivy/data/fonts/RobotoMono-Regular.ttf
[INFO]:     - copy ./kivy/data/fonts/DejaVuSans.ttf
[INFO]:     - copy ./kivy/data/fonts/Roboto-BoldItalic.ttf
[INFO]:     - copy ./kivy/data/fonts/Roboto-Italic.ttf
[INFO]:     - copy ./kivy/data/fonts/Roboto-Bold.ttf
[INFO]:     - copy ./kivy/extras/highlight.pyc
[INFO]:     - copy ./kivy/extras/__init__.pyc
[INFO]:     - copy ./six-1.10.0-py3.7.egg-info/PKG-INFO
[INFO]:     - copy ./six-1.10.0-py3.7.egg-info/SOURCES.txt
[INFO]:     - copy ./six-1.10.0-py3.7.egg-info/top_level.txt
[INFO]:     - copy ./six-1.10.0-py3.7.egg-info/dependency_links.txt
[INFO]:     - copy ./android/_android_billing.cpython-37m-darwin.so
[INFO]:     - copy ./android/_android.cpython-37m-darwin.so
[INFO]:     - copy ./android/loadingscreen.pyc
[INFO]:     - copy ./android/config.pyc
[INFO]:     - copy ./android/permissions.pyc
[INFO]:     - copy ./android/storage.pyc
[INFO]:     - copy ./android/activity.pyc
[INFO]:     - copy ./android/mixer.pyc
[INFO]:     - copy ./android/_ctypes_library_finder.pyc
[INFO]:     - copy ./android/__init__.pyc
[INFO]:     - copy ./android/billing.pyc
[INFO]:     - copy ./android/broadcast.pyc
[INFO]:     - copy ./android/runnable.pyc
[INFO]:     - copy ./jnius/jnius.cpython-37m-darwin.so
[INFO]:     - copy ./jnius/__init__.pyc
[INFO]:     - copy ./jnius/signatures.pyc
[INFO]:     - copy ./jnius/reflect.pyc
[INFO]:     - copy ./jnius/src/org/jnius/NativeInvocationHandler.java
[INFO]:     - copy ./setuptools/ssl_support.pyc
[INFO]:     - copy ./setuptools/msvc.pyc
[INFO]:     - copy ./setuptools/dist.pyc
[INFO]:     - copy ./setuptools/lib2to3_ex.pyc
[INFO]:     - copy ./setuptools/config.pyc
[INFO]:     - copy ./setuptools/depends.pyc
[INFO]:     - copy ./setuptools/glob.pyc
[INFO]:     - copy ./setuptools/cli-64.exe
[INFO]:     - copy ./setuptools/build_meta.pyc
[INFO]:     - copy ./setuptools/py31compat.pyc
[INFO]:     - copy ./setuptools/gui-64.exe
[INFO]:     - copy ./setuptools/unicode_utils.pyc
[INFO]:     - copy ./setuptools/wheel.pyc
[INFO]:     - copy ./setuptools/archive_util.pyc
[INFO]:     - copy ./setuptools/package_index.pyc
[INFO]:     - copy ./setuptools/namespaces.pyc
[INFO]:     - copy ./setuptools/script.tmpl
[INFO]:     - copy ./setuptools/glibc.pyc
[INFO]:     - copy ./setuptools/version.pyc
[INFO]:     - copy ./setuptools/sandbox.pyc
[INFO]:     - copy ./setuptools/pep425tags.pyc
[INFO]:     - copy ./setuptools/__init__.pyc
[INFO]:     - copy ./setuptools/launch.pyc
[INFO]:     - copy ./setuptools/cli.exe
[INFO]:     - copy ./setuptools/windows_support.pyc
[INFO]:     - copy ./setuptools/cli-32.exe
[INFO]:     - copy ./setuptools/_deprecation_warning.pyc
[INFO]:     - copy ./setuptools/gui-32.exe
[INFO]:     - copy ./setuptools/gui.exe
[INFO]:     - copy ./setuptools/extension.pyc
[INFO]:     - copy ./setuptools/py33compat.pyc
[INFO]:     - copy ./setuptools/py27compat.pyc
[INFO]:     - copy ./setuptools/dep_util.pyc
[INFO]:     - copy ./setuptools/monkey.pyc
[INFO]:     - copy ./setuptools/script (dev).tmpl
[INFO]:     - copy ./setuptools/site-patch.pyc
[INFO]:     - copy ./setuptools/_vendor/six.pyc
[INFO]:     - copy ./setuptools/_vendor/pyparsing.pyc
[INFO]:     - copy ./setuptools/_vendor/__init__.pyc
[INFO]:     - copy ./setuptools/_vendor/packaging/markers.pyc
[INFO]:     - copy ./setuptools/_vendor/packaging/__about__.pyc
[INFO]:     - copy ./setuptools/_vendor/packaging/requirements.pyc
[INFO]:     - copy ./setuptools/_vendor/packaging/version.pyc
[INFO]:     - copy ./setuptools/_vendor/packaging/_structures.pyc
[INFO]:     - copy ./setuptools/_vendor/packaging/specifiers.pyc
[INFO]:     - copy ./setuptools/_vendor/packaging/__init__.pyc
[INFO]:     - copy ./setuptools/_vendor/packaging/_compat.pyc
[INFO]:     - copy ./setuptools/_vendor/packaging/utils.pyc
[INFO]:     - copy ./setuptools/command/py36compat.pyc
[INFO]:     - copy ./setuptools/command/install.pyc
[INFO]:     - copy ./setuptools/command/install_scripts.pyc
[INFO]:     - copy ./setuptools/command/launcher manifest.xml
[INFO]:     - copy ./setuptools/command/bdist_egg.pyc
[INFO]:     - copy ./setuptools/command/install_egg_info.pyc
[INFO]:     - copy ./setuptools/command/build_clib.pyc
[INFO]:     - copy ./setuptools/command/sdist.pyc
[INFO]:     - copy ./setuptools/command/easy_install.pyc
[INFO]:     - copy ./setuptools/command/dist_info.pyc
[INFO]:     - copy ./setuptools/command/rotate.pyc
[INFO]:     - copy ./setuptools/command/bdist_wininst.pyc
[INFO]:     - copy ./setuptools/command/setopt.pyc
[INFO]:     - copy ./setuptools/command/register.pyc
[INFO]:     - copy ./setuptools/command/install_lib.pyc
[INFO]:     - copy ./setuptools/command/develop.pyc
[INFO]:     - copy ./setuptools/command/egg_info.pyc
[INFO]:     - copy ./setuptools/command/build_ext.pyc
[INFO]:     - copy ./setuptools/command/bdist_rpm.pyc
[INFO]:     - copy ./setuptools/command/upload.pyc
[INFO]:     - copy ./setuptools/command/saveopts.pyc
[INFO]:     - copy ./setuptools/command/__init__.pyc
[INFO]:     - copy ./setuptools/command/build_py.pyc
[INFO]:     - copy ./setuptools/command/test.pyc
[INFO]:     - copy ./setuptools/command/upload_docs.pyc
[INFO]:     - copy ./setuptools/command/alias.pyc
[INFO]:     - copy ./setuptools/extern/__init__.pyc
[INFO]:     - copy ./pkg_resources/py31compat.pyc
[INFO]:     - copy ./pkg_resources/__init__.pyc
[INFO]:     - copy ./pkg_resources/_vendor/six.pyc
[INFO]:     - copy ./pkg_resources/_vendor/appdirs.pyc
[INFO]:     - copy ./pkg_resources/_vendor/pyparsing.pyc
[INFO]:     - copy ./pkg_resources/_vendor/__init__.pyc
[INFO]:     - copy ./pkg_resources/_vendor/packaging/markers.pyc
[INFO]:     - copy ./pkg_resources/_vendor/packaging/__about__.pyc
[INFO]:     - copy ./pkg_resources/_vendor/packaging/requirements.pyc
[INFO]:     - copy ./pkg_resources/_vendor/packaging/version.pyc
[INFO]:     - copy ./pkg_resources/_vendor/packaging/_structures.pyc
[INFO]:     - copy ./pkg_resources/_vendor/packaging/specifiers.pyc
[INFO]:     - copy ./pkg_resources/_vendor/packaging/__init__.pyc
[INFO]:     - copy ./pkg_resources/_vendor/packaging/_compat.pyc
[INFO]:     - copy ./pkg_resources/_vendor/packaging/utils.pyc
[INFO]:     - copy ./pkg_resources/extern/__init__.pyc
[INFO]:     - copy ./setuptools-40.9.0-py3.7.egg-info/PKG-INFO
[INFO]:     - copy ./setuptools-40.9.0-py3.7.egg-info/zip-safe
[INFO]:     - copy ./setuptools-40.9.0-py3.7.egg-info/SOURCES.txt
[INFO]:     - copy ./setuptools-40.9.0-py3.7.egg-info/entry_points.txt
[INFO]:     - copy ./setuptools-40.9.0-py3.7.egg-info/requires.txt
[INFO]:     - copy ./setuptools-40.9.0-py3.7.egg-info/top_level.txt
[INFO]:     - copy ./setuptools-40.9.0-py3.7.egg-info/dependency_links.txt
[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/dists/myapp__armeabi-v7a
[INFO]:    -> running cp /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/build/other_builds/python3-libffi-openssl-sqlite3/arme...(and 186 more)
[INFO]:    Renaming .so files to reflect cross-compile
[INFO]:    -> running find v7a/dists/myapp__armeabi-v7a/_python_bundle/_python_bundle/site-packages/usr/local/bin'...
[INFO]:    Selecting java build tool:
[INFO]:    Detected highest available build tools version to be 30.0.0-rc2
[INFO]:        Building with gradle, as gradle executable is present
[DEBUG]:   -> running gradlew assembleDebug
[DEBUG]:   	
[DEBUG]:   	> Task :compileDebugJavaWithJavac 
[DEBUG]:   	Note: Some input files use or override a deprecated API.
[DEBUG]:   	Note: Recompile with -Xlint:deprecation for details.
[DEBUG]:   	Note: Some input files use unchecked or unsafe operations.
[DEBUG]:   	Note: Recompile with -Xlint:unchecked for details.
[DEBUG]:   	
[DEBUG]:   	
[DEBUG]:   	BUILD SUCCESSFUL in 3s
[DEBUG]:   	27 actionable tasks: 27 executed

[INFO]:    <- directory context /Users/hvitis/Programming/Python/app/.buildozer/android/platform/python-for-android
[INFO]:    # Copying APK to current directory
[INFO]:    # APK filename not found in build output. Guessing...
[INFO]:    # Found APK file: /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/dists/myapp__armeabi-v7a/build/outputs/apk/debug/myapp__armeabi-v7a-debug.apk
[INFO]:    # Add version number to APK
[INFO]:    # APK renamed to myapp__armeabi-v7a-debug-0.1-.apk
[DEBUG]:   -> running cp /Users/hvitis/Programming/Python/app/.buildozer/android/platform/build-armeabi-v7a/dists/myapp__armeabi-v7a/build/outputs/apk/debug/myapp__armeabi-v7a-debug.apk myapp__armeabi-v7a-debug-0.1-.apk
WARNING: Received a --sdk argument, but this argument is deprecated and does nothing.
No compiled python is present to zip, skipping.
No setup.py/pyproject.toml used, copying full private data into .apk.
Applying Java source code patches...
Applying patch: src/patches/SDLActivity.java.patch
@hvitis
Copy link
Author

hvitis commented Apr 3, 2020

What solved my issue was changing the buildozer.spec

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

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

 Kivy version to use
osx.kivy_version = 1.11.1

@hvitis hvitis closed this as completed Apr 3, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant