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

Building kivy app with python3 requirement gives "No compiled python is present to zip, skipping." warning and "Unable to import kivy._clock. Have you perhaps forgotten to compile kivy? ..." error when run on android device. #977

Closed
ocerri opened this issue Sep 30, 2019 · 3 comments

Comments

@ocerri
Copy link

ocerri commented Sep 30, 2019

Versions

  • Python: 3.6.7
  • OS: Ubuntu
  • Buildozer: 0.39

Description

I am trying to build a kivy app written in python 3 for android devices using buildozer.
When running the "buildozer -v android debug command" everything seems to go fine: the build successful message is displayed and the apk is created in the bin directory.
However I also receive a suspicious "No compiled python is present to zip, skipping." warning.

When trying to run the apk on my android smartphone, the installation is successful but when I lounch the app I can see in the log the following error message before the app crashes:

09-30 12:27:23.774 28967 28998 I python : [ERROR ] [Clock ] Unable to import kivy._clock. Have you perhaps forgotten to compile kivy? Kivy contains Cython code which needs to be compiled. A missing kivy._clock often indicates the Cython code has not been compiled. Please follow the installation instructions and make sure to compile Kivy

However, cython is installed in the venv that I am using and the app runs fine when run on the computer itself.

buildozer.spec

Command:

buildozer -v android debug

Spec file:

[app]

# (str) Title of your application
title = Jumpy Kitten

# (str) Package name
package.name = jumpyKitten

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

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

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

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

# (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/images/presplash_image.png

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

# (str) Supported orientation (one of landscape, sensorLandscape, portrait or all)
orientation = landscape

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

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

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

# (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 = ~/Shared/crystax-ndk-10.3.2

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

# (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 = 'com.google.firebase:firebase-ads:10.2.0'
# android.gradle_dependencies = 'com.google.android.gms:play-services-ads:17.2.1'

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

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

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

# Test ID
android.meta_data = com.google.android.gms.ads.APPLICATION_ID=ca-app-pub-3940256099942544~3347511713

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

# (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
android.arch = armeabi-v7a

#
# Python for android (p4a) specific
#

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

Logs

# Check configuration tokens
# Ensure build layout
# Check configuration tokens
# Preparing build
# Check requirements for android
# Run 'dpkg --version'
# Cwd None
Debian 'dpkg' package management program version 1.19.0.5 (amd64).
This is free software; see the GNU General Public License version 2 or
later for copying conditions. There is NO warranty.
# Search for Git (git)
#  -> found at /usr/bin/git
# Search for Cython (cython)
#  -> found at /home/olmo/kivy_venv/bin/cython
# Search for Java compiler (javac)
#  -> found at /usr/lib/jvm/java-8-openjdk-amd64/bin/javac
# Search for Java keytool (keytool)
#  -> found at /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/keytool
# Install platform
# Run '/home/olmo/kivy_venv/bin/python3 -m pip install -q  \'appdirs\' \'colorama>=0.3.3\' \'jinja2\' \'six\' \'enum34; python_version<"3.4"\' \'sh>=1.10; sys_platform!="nt"\' \'pep517\' \'pytoml\' \'virtualenv\''
# Cwd None
# Apache ANT found at /home/olmo/.buildozer/android/platform/apache-ant-1.9.4
# Android SDK found at /home/olmo/.buildozer/android/platform/android-sdk
# Android NDK found at /home/olmo/.buildozer/android/platform/android-ndk-r17c
# Check application requirements
# Check garden requirements
# Compile platform
# Run '/home/olmo/kivy_venv/bin/python3 -m pythonforandroid.toolchain create --dist_name=jumpyKitten --bootstrap=sdl2 --requirements=kivy,libffi,python3,kivy,jnius --arch armeabi-v7a --copy-libs --color=always --storage-dir="/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build" --ndk-api=21'
# Cwd /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/python-for-android
[INFO]:    Will compile for the following archs: armeabi-v7a
[INFO]:    Found Android API target in $ANDROIDAPI: 28
[INFO]:    Available Android APIs are (27, 28)
[INFO]:    Requested API target 28 is available, continuing.
[INFO]:    Found NDK dir in $ANDROIDNDK: /home/olmo/.buildozer/android/platform/android-ndk-r17c
[INFO]:    Found NDK version 17c
[INFO]:    Getting NDK API version (i.e. minimum supported API) from user argument
[INFO]:    Found virtualenv at /home/olmo/kivy_venv/bin/virtualenv
[INFO]:    Found the following toolchain versions: ['4.9']
[INFO]:    Picking the latest gcc toolchain, here 4.9
[INFO]:    Of the existing distributions, the following meet the given requirements:
[INFO]:    	jumpyKitten: min API 21, includes recipes (hostpython3, libffi, openssl, sdl2_image, sdl2_mixer, sdl2_ttf, sqlite3, python3, sdl2, setuptools, six, pyjnius, android, kivy, jnius, kivmob), built for archs (armeabi-v7a)
[INFO]:    jumpyKitten has compatible recipes, using this one
# Build the application #60
# Copy application source from /home/olmo/SmartphoneApps/JumpyKitten
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app
# Copy /home/olmo/SmartphoneApps/JumpyKitten/infoPage.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/settingsPage.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/jumpykitten.kv
# Copy /home/olmo/SmartphoneApps/JumpyKitten/JumpyKitten.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/LICENSE
# Copy /home/olmo/SmartphoneApps/JumpyKitten/rankPage.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/main.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/mainPage.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/screenshots
# Copy /home/olmo/SmartphoneApps/JumpyKitten/screenshots/Screenshot_20190625-000625.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/screenshots/Screenshot_20190625-000647.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/screenshots/Screenshot_20190625-000631.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/screenshots/CoverShot.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/screenshots/Screenshot_20190625-000639.png
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/images
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/obstacle.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/presplash_image.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/obstacle_1.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/AppIcon.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/AppLouncherIcon.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/background_4.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/background_3.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/background.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/obstacle2.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/background_2.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/drith_pile.png
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/images/flappyBird
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/flappyBird/flappyup.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/flappyBird/flappynormal.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/flappyBird/pipe_top.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/flappyBird/flappy.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/flappyBird/pipe_bottom.png
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/images/icons
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/icons/noads.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/icons/home.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/icons/info.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/icons/settings.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/icons/retry.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/icons/ranking.png
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/images/icons/squareIcons
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/icons/squareIcons/noads.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/icons/squareIcons/home.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/icons/squareIcons/info.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/icons/squareIcons/settings.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/icons/squareIcons/retry.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/icons/squareIcons/ranking.png
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/images/cats/deprecated
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/pushee_cat.png
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/images/cats/deprecated/new_cat
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/frame12_nobkgd.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/2.jpg
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/frame15_nobkgd.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/12.jpg
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/frame1_nobkgd.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/8.jpg
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/9.jpg
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/tumblr_nwuopu0XIM1s7uxiko1_500.jpg
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/frame9_nobkgd.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/frame13_nobkgd.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/frame3_nobkgd.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/15.jpg
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/frame10_nobkgd.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/10.jpg
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/7.jpg
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/3.jpg
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/frame5_nobkgd.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/13.jpg
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/frame7_nobkgd.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/14.jpg
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/frame14_nobkgd.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/frame8_nobkgd.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/frame4_nobkgd.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/frame0_nobkgd.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/frame11_nobkgd.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/frame2_nobkgd.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/4.jpg
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/frame6_nobkgd.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/6.jpg
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/16.jpg
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/5.jpg
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/new_cat/11.jpg
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/images/cats/deprecated/pink_nyan
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/pink_nyan/frame_3_delay-0.07s.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/pink_nyan/frame_5_delay-0.07s.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/pink_nyan/frame_1_delay-0.07s.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/pink_nyan/frame_2_delay-0.07s.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/pink_nyan/frame_0_delay-0.07s.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/deprecated/pink_nyan/frame_4_delay-0.07s.png
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/images/cats/pink_cat_new
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/pink_cat_new/CATFINALDRFAFT-08.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/pink_cat_new/CATFINALDRFAFT-03.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/pink_cat_new/CATFINALDRFAFT-07.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/pink_cat_new/CATFINALDRFAFT-01.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/pink_cat_new/CATFINALDRFAFT-05.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/pink_cat_new/CATFINALDRFAFT-04.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/pink_cat_new/CATFINALDRFAFT-02.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/pink_cat_new/CATFINALDRFAFT-06.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/pink_cat_new/CATFINALDRFAFT-09.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/pink_cat_new/CATFINALDRFAFT-00.png
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/images/cats/pink_cat_new/cropped
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/pink_cat_new/cropped/CATFINALDRFAFT-08.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/pink_cat_new/cropped/CATFINALDRFAFT-03.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/pink_cat_new/cropped/CATFINALDRFAFT-07.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/pink_cat_new/cropped/CATFINALDRFAFT-01.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/pink_cat_new/cropped/CATFINALDRFAFT-05.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/pink_cat_new/cropped/CATFINALDRFAFT-04.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/pink_cat_new/cropped/CATFINALDRFAFT-02.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/pink_cat_new/cropped/CATFINALDRFAFT-06.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/pink_cat_new/cropped/CATFINALDRFAFT-09.png
# Copy /home/olmo/SmartphoneApps/JumpyKitten/images/cats/pink_cat_new/cropped/CATFINALDRFAFT-00.png
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/six.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/rsa
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/rsa/__init__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/rsa/parallel.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/rsa/key.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/rsa/common.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/rsa/randnum.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/rsa/util.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/rsa/_compat.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/rsa/prime.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/rsa/core.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/rsa/pem.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/rsa/asn1.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/rsa/transform.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/rsa/machine_size.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/rsa/pkcs1_v2.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/rsa/pkcs1.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/rsa/cli.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/__init__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/error.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/debug.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/compat
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/compat/integer.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/compat/dateandtime.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/compat/octets.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/compat/__init__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/compat/binary.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/compat/calling.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/compat/string.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/codec
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/codec/__init__.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/codec/der
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/codec/der/__init__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/codec/der/decoder.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/codec/der/encoder.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/codec/native
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/codec/native/__init__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/codec/native/decoder.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/codec/native/encoder.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/codec/cer
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/codec/cer/__init__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/codec/cer/decoder.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/codec/cer/encoder.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/codec/ber
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/codec/ber/__init__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/codec/ber/decoder.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/codec/ber/encoder.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/codec/ber/eoo.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/type
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/type/tag.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/type/opentype.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/type/namedval.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/type/constraint.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/type/__init__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/type/error.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/type/base.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/type/tagmap.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/type/char.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/type/useful.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/type/univ.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1/type/namedtype.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/six_archive
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/six_archive/__init__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/six_archive/six.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/six_archive/LICENSE
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/gspread
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/gspread/client.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/gspread/__init__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/gspread/urls.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/gspread/exceptions.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/gspread/utils.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/gspread/models.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/certifi
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/certifi/__init__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/certifi/__main__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/certifi/core.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/langbulgarianmodel.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/euctwfreq.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/eucjpprober.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/gb2312prober.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/mbcssm.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/gb2312freq.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/langhebrewmodel.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/jpcntx.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/__init__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/chardistribution.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/charsetgroupprober.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/langthaimodel.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/universaldetector.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/compat.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/latin1prober.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/mbcsgroupprober.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/jisfreq.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/charsetprober.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/enums.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/codingstatemachine.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/euckrfreq.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/hebrewprober.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/euctwprober.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/sbcsgroupprober.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/mbcharsetprober.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/langhungarianmodel.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/escprober.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/sjisprober.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/utf8prober.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/version.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/big5freq.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/langgreekmodel.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/sbcharsetprober.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/cp949prober.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/big5prober.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/langcyrillicmodel.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/escsm.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/langturkishmodel.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/euckrprober.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/cli
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/cli/__init__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/chardet/cli/chardetect.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/http
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/http/server.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/http/client.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/http/__init__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/http/cookiejar.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/http/cookies.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc5958.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc5084.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc1902.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc1155.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc1905.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc4210.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/__init__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc7296.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc3560.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc4108.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc5652.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc2251.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc4055.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc3852.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc2634.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc7191.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc2985.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc8418.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc3280.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc1901.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc2315.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc8103.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc5480.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc6019.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc3447.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc3161.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc8226.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc3281.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc1157.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc8520.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc4073.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc4211.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc2560.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc5649.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc8619.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc8410.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc5035.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc3565.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc3779.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc2459.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc2314.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/pem.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc3279.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc2986.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc5083.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc2511.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc5940.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc3412.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc3709.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc5915.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc3274.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc5208.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc6402.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc5280.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc3414.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/pyasn1_modules/rfc2437.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/httplib2
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/httplib2/__init__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/httplib2/iri2uri.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/httplib2/certs.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/httplib2/socks.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/idna
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/idna/intranges.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/idna/package_data.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/idna/__init__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/idna/compat.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/idna/codec.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/idna/idnadata.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/idna/core.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/idna/uts46data.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/connectionpool.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/poolmanager.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/response.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/__init__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/exceptions.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/filepost.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/request.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/fields.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/connection.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/_collections.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/packages
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/packages/ordered_dict.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/packages/__init__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/packages/six.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/packages/backports
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/packages/backports/__init__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/packages/backports/makefile.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/packages/ssl_match_hostname
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/packages/ssl_match_hostname/__init__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/packages/ssl_match_hostname/_implementation.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/util
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/util/timeout.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/util/response.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/util/url.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/util/__init__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/util/selectors.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/util/request.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/util/ssl_.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/util/connection.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/util/retry.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/util/wait.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/contrib
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/contrib/__init__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/contrib/appengine.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/contrib/pyopenssl.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/contrib/securetransport.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/contrib/socks.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/contrib/ntlmpool.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/contrib/_securetransport
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/contrib/_securetransport/low_level.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/contrib/_securetransport/__init__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/urllib3/contrib/_securetransport/bindings.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/requests
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/requests/help.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/requests/auth.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/requests/__init__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/requests/compat.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/requests/api.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/requests/exceptions.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/requests/utils.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/requests/__version__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/requests/hooks.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/requests/_internal_utils.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/requests/certs.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/requests/cookies.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/requests/packages.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/requests/status_codes.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/requests/sessions.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/requests/structures.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/requests/models.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/requests/adapters.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/transport.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/client.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/crypt.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/__init__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/file.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/tools.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/_helpers.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/_pycrypto_crypt.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/_pkce.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/clientsecrets.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/service_account.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/_openssl_crypt.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/_pure_python_crypt.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/contrib
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/contrib/__init__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/contrib/appengine.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/contrib/multiprocess_file_storage.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/contrib/sqlalchemy.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/contrib/_appengine_ndb.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/contrib/gce.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/contrib/devshell.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/contrib/xsrfutil.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/contrib/keyring_storage.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/contrib/flask_util.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/contrib/dictionary_storage.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/contrib/_metadata.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/contrib/django_util
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/contrib/django_util/site.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/contrib/django_util/storage.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/contrib/django_util/__init__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/contrib/django_util/decorators.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/contrib/django_util/views.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/contrib/django_util/apps.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/contrib/django_util/models.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/iOS_libraries/oauth2client/contrib/django_util/signals.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/commercial
# Copy /home/olmo/SmartphoneApps/JumpyKitten/commercial/kivmob.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/commercial/__init__.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/components
# Copy /home/olmo/SmartphoneApps/JumpyKitten/components/__init__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/components/background.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/components/mcnay.py
# Create directory /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/components/obstacles
# Copy /home/olmo/SmartphoneApps/JumpyKitten/components/obstacles/__init__.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/components/obstacles/rock.py
# Copy /home/olmo/SmartphoneApps/JumpyKitten/components/obstacles/bird.py
# Package the application
# project.properties updated
# Gradle project detected, copy files /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/src/main/java
# Run '/home/olmo/kivy_venv/bin/python3 -m pythonforandroid.toolchain apk --debug --bootstrap=sdl2 --dist_name jumpyKitten --name \'Jumpy Kitten\' --version 0.2.0 --package org.aoct.jumpykitten.jumpykitten --android_api 28 --minsdk 21 --ndk-api 21 --private /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app --permission INTERNET --permission ACCESS_NETWORK_STATE --meta-data com.google.android.gms.ads.APPLICATION_ID=ca-app-pub-3940256099942544~3347511713 --presplash /home/olmo/SmartphoneApps/JumpyKitten/./images/presplash_image.png --icon /home/olmo/SmartphoneApps/JumpyKitten/./images/AppLouncherIcon.png --orientation landscape --copy-libs --depend \'com.google.firebase:firebase-ads:10.2.0\' --arch armeabi-v7a --color=always --storage-dir="/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build" --ndk-api=21'
# Cwd /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/python-for-android
[INFO]:    Will compile for the following archs: armeabi-v7a
[INFO]:    Getting Android API version from user argument: 28
[INFO]:    Available Android APIs are (27, 28)
[INFO]:    Requested API target 28 is available, continuing.
[INFO]:    Found NDK dir in $ANDROIDNDK: /home/olmo/.buildozer/android/platform/android-ndk-r17c
[INFO]:    Found NDK version 17c
[INFO]:    Getting NDK API version (i.e. minimum supported API) from user argument
[INFO]:    Found virtualenv at /home/olmo/kivy_venv/bin/virtualenv
[INFO]:    Found the following toolchain versions: ['4.9']
[INFO]:    Picking the latest gcc toolchain, here 4.9
[INFO]:    Of the existing distributions, the following meet the given requirements:
[INFO]:    	jumpyKitten: min API 21, includes recipes (hostpython3, libffi, openssl, sdl2_image, sdl2_mixer, sdl2_ttf, sqlite3, python3, sdl2, setuptools, six, pyjnius, android, kivy, jnius, kivmob), built for archs (armeabi-v7a)
[INFO]:    jumpyKitten has compatible recipes, using this one
[INFO]:    Of the existing distributions, the following meet the given requirements:
[INFO]:    	jumpyKitten: min API 21, includes recipes (hostpython3, libffi, openssl, sdl2_image, sdl2_mixer, sdl2_ttf, sqlite3, python3, sdl2, setuptools, six, pyjnius, android, kivy, jnius, kivmob), built for archs (armeabi-v7a)
[INFO]:    jumpyKitten has compatible recipes, using this one
[INFO]:    -> directory context /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten
Listing '/tmp/p4a-extra-env-hjw0ku0j'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/JumpyKitten.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/_applibs'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/commercial'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/commercial/__init__.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/commercial/kivmob.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/components'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/components/__init__.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/components/background.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/components/mcnay.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/components/obstacles'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/components/obstacles/__init__.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/components/obstacles/bird.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/components/obstacles/rock.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/certifi'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/certifi/__init__.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/certifi/__main__.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/certifi/core.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/__init__.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/big5freq.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/big5prober.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/chardistribution.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/charsetgroupprober.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/charsetprober.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/cli'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/cli/__init__.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/cli/chardetect.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/codingstatemachine.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/compat.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/cp949prober.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/enums.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/escprober.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/escsm.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/eucjpprober.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/euckrfreq.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/euckrprober.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/euctwfreq.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/euctwprober.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/gb2312freq.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/gb2312prober.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/hebrewprober.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/jisfreq.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/jpcntx.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/langbulgarianmodel.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/langcyrillicmodel.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/langgreekmodel.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/langhebrewmodel.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/langhungarianmodel.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/langthaimodel.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/langturkishmodel.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/latin1prober.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/mbcharsetprober.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/mbcsgroupprober.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/mbcssm.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/sbcharsetprober.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/sbcsgroupprober.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/sjisprober.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/universaldetector.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/utf8prober.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/chardet/version.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/gspread'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/gspread/__init__.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/gspread/client.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/gspread/exceptions.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/gspread/models.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/gspread/urls.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/gspread/utils.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/http'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/http/__init__.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/http/client.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/http/cookiejar.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/http/cookies.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/http/server.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/httplib2'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/httplib2/__init__.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/httplib2/certs.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/httplib2/iri2uri.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/httplib2/socks.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/idna'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/idna/__init__.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/idna/codec.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/idna/compat.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/idna/core.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/idna/idnadata.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/idna/intranges.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/idna/package_data.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/idna/uts46data.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/__init__.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/_helpers.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/_openssl_crypt.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/_pkce.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/_pure_python_crypt.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/_pycrypto_crypt.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/client.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/clientsecrets.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/contrib'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/contrib/__init__.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/contrib/_appengine_ndb.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/contrib/_metadata.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/contrib/appengine.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/contrib/devshell.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/contrib/dictionary_storage.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/contrib/django_util'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/contrib/django_util/__init__.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/contrib/django_util/apps.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/contrib/django_util/decorators.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/contrib/django_util/models.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/contrib/django_util/signals.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/contrib/django_util/site.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/contrib/django_util/storage.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/contrib/django_util/views.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/contrib/flask_util.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/contrib/gce.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/contrib/keyring_storage.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/contrib/multiprocess_file_storage.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/contrib/sqlalchemy.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/contrib/xsrfutil.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/crypt.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/file.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/service_account.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/tools.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/oauth2client/transport.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/__init__.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/codec'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/codec/__init__.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/codec/ber'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/codec/ber/__init__.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/codec/ber/decoder.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/codec/ber/encoder.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/codec/ber/eoo.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/codec/cer'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/codec/cer/__init__.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/codec/cer/decoder.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/codec/cer/encoder.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/codec/der'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/codec/der/__init__.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/codec/der/decoder.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/codec/der/encoder.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/codec/native'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/codec/native/__init__.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/codec/native/decoder.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/codec/native/encoder.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/compat'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/compat/__init__.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/compat/binary.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/compat/calling.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/compat/dateandtime.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/compat/integer.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/compat/octets.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/compat/string.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/debug.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/error.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/type'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/type/__init__.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/type/base.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/type/char.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/type/constraint.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/type/error.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/type/namedtype.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/type/namedval.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/type/opentype.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/type/tag.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/type/tagmap.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/type/univ.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1/type/useful.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/__init__.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/pem.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc1155.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc1157.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc1901.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc1902.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc1905.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc2251.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc2314.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc2315.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc2437.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc2459.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc2511.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc2560.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc2634.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc2985.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc2986.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc3161.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc3274.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc3279.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc3280.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc3281.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc3412.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc3414.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc3447.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc3560.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc3565.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc3709.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc3779.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc3852.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc4055.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc4073.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc4108.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc4210.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc4211.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc5035.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc5083.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc5084.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc5208.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc5280.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc5480.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc5649.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc5652.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc5915.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc5940.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc5958.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc6019.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc6402.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc7191.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc7296.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc8103.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc8226.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc8410.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc8418.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc8520.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/pyasn1_modules/rfc8619.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/requests'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/requests/__init__.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/requests/__version__.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/requests/_internal_utils.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/requests/adapters.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/requests/api.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/requests/auth.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/requests/certs.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/requests/compat.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/requests/cookies.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/requests/exceptions.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/requests/help.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/requests/hooks.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/requests/models.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/requests/packages.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/requests/sessions.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/requests/status_codes.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/requests/structures.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/requests/utils.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/rsa'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/rsa/__init__.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/rsa/_compat.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/rsa/asn1.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/rsa/cli.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/rsa/common.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/rsa/core.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/rsa/key.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/rsa/machine_size.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/rsa/parallel.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/rsa/pem.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/rsa/pkcs1.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/rsa/pkcs1_v2.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/rsa/prime.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/rsa/randnum.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/rsa/transform.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/rsa/util.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/six.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/six_archive'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/six_archive/__init__.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/six_archive/six.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/__init__.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/_collections.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/connection.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/connectionpool.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/contrib'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/contrib/__init__.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/contrib/_securetransport'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/contrib/_securetransport/__init__.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/contrib/_securetransport/bindings.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/contrib/_securetransport/low_level.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/contrib/appengine.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/contrib/ntlmpool.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/contrib/pyopenssl.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/contrib/securetransport.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/contrib/socks.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/exceptions.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/fields.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/filepost.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/packages'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/packages/__init__.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/packages/backports'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/packages/backports/__init__.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/packages/backports/makefile.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/packages/ordered_dict.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/packages/six.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/packages/ssl_match_hostname'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/packages/ssl_match_hostname/__init__.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/packages/ssl_match_hostname/_implementation.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/poolmanager.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/request.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/response.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/util'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/util/__init__.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/util/connection.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/util/request.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/util/response.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/util/retry.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/util/selectors.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/util/ssl_.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/util/timeout.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/util/url.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/iOS_libraries/urllib3/util/wait.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/images'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/images/cats'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/images/cats/deprecated'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/images/cats/deprecated/new_cat'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/images/cats/deprecated/pink_nyan'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/images/cats/pink_cat_new'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/images/cats/pink_cat_new/cropped'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/images/flappyBird'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/images/icons'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/images/icons/squareIcons'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/infoPage.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/main.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/mainPage.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/rankPage.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/screenshots'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/settingsPage.py'...
Compiling '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/app/sitecustomize.py'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/modules'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/Kivy-1.11.1-py2.7.egg-info'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/android'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/jnius'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/jnius/src'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/jnius/src/org'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/jnius/src/org/jnius'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivmob-2.0.dist-info'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/core'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/core/audio'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/core/camera'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/core/clipboard'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/core/gl'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/core/image'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/core/spelling'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/core/text'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/core/video'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/core/window'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/data'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/data/fonts'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/data/glsl'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/data/images'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/data/keyboards'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/data/logo'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/deps'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/effects'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/extras'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/garden'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/graphics'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/graphics/cgl_backend'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/include'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/input'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/input/postproc'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/input/providers'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/lang'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/lib'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/lib/gstplayer'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/lib/vidcore_lite'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/modules'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/network'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/storage'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/tools'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/tools/gles_compat'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/tools/highlight'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/tools/packaging'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/tools/packaging/pyinstaller_hooks'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/tools/pep8checker'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/tools/theming'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/tools/theming/defaulttheme'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/uix'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/uix/behaviors'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/kivy/uix/recycleview'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/pkg_resources'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/pkg_resources/_vendor'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/pkg_resources/_vendor/packaging'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/pkg_resources/extern'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/pyjnius-1.2.1.dev0-py2.7.egg-info'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/setuptools'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/setuptools/_vendor'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/setuptools/_vendor/packaging'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/setuptools/command'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/setuptools/extern'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/setuptools-40.9.0-py2.7.egg-info'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/usr'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/usr/local'...
Listing '/home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/_python_bundle/_python_bundle/site-packages/usr/local/bin'...
[INFO]:    Selecting java build tool:
[INFO]:    Detected highest available build tools version to be 29.0.2
[INFO]:        Building with gradle, as gradle executable is present
[DEBUG]:   -> running gradlew assembleDebug
[DEBUG]:   	
[DEBUG]:   	> Configure project : 
[DEBUG]:   	WARNING: Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'.
[DEBUG]:   	It will be removed at the end of 2018. For more information see: http://d.android.com/r/tools/update-dependency-configurations.html
[DEBUG]:   	
[DEBUG]:   	
[DEBUG]:   	BUILD SUCCESSFUL in 3s
[DEBUG]:   	27 actionable tasks: 4 executed, 23 up-to-date

[INFO]:    <- directory context /home/olmo/SmartphoneApps/JumpyKitten/.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: /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/build/outputs/apk/debug/jumpyKitten-debug.apk
[INFO]:    # Add version number to APK
[INFO]:    # APK renamed to jumpyKitten-0.2.0-debug.apk
[DEBUG]:   -> running cp /home/olmo/SmartphoneApps/JumpyKitten/.buildozer/android/platform/build/dists/jumpyKitten/build/outputs/apk/debug/jumpyKitten-debug.apk jumpyKitten-0.2.0-debug.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
Warning: failed to apply patch (exit code 1), assuming it is already applied: src/patches/SDLActivity.java.patch
# Android packaging done!
# APK jumpyKitten-0.2.0-debug.apk available in the bin directory
@Denis-Memo
Copy link

Which version of Cython you are using? you may want to take a look at Working versions

@ocerri
Copy link
Author

ocerri commented Sep 30, 2019

Hello,
Thanks for the suggestion, I indeed checked that page during the installation and I am using a coherent version of the two packages: Kivy=1.11.1 and Cython=0.29.9

@Denis-Memo
Copy link

Try to use older version of buildozer (0.30 - 0.34), first uninstall Cython completely by using command pip uninstall cython repeat the command until you get Cannot uninstall requirement cython, not installed then uninstall buildozer using the same method above and then try to reinstall buildozer but this time use older versions, something like pip install buildozer==0.34. I was facing some strange errors when i use latest buildozer versions to build apk but when i downgrade to 0.33 there were no more problem. I can build for armeabi-v7a, arm64-v8a and x86 arch just fine and the apk never crash on any device

@ocerri ocerri closed this as completed Oct 8, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants