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

My application does not open in android but if it works in geany, help please. #903

Closed
DACH1 opened this issue May 20, 2019 · 1 comment
Closed

Comments

@DACH1
Copy link

DACH1 commented May 20, 2019

Versions

  • Python: 3.7
  • OS: Ubuntu 18.04
  • Buildozer:0.38.dev0
  • Cython: 0.27.3

Description

When executing it with geany everything works perfect, when creating the application with buildozer it does it successfully but when installing APK and open it does not open,
I have the libraries in the root directory of my application.

buildozer.spec

Command:

buildozer -v  android debug 

Spec file:

[app]

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

# (str) Package name
package.name = myapp

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

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

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

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

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

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

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

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

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

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

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

# (list) Garden requirements
#garden_requirements =

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

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

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

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

#
# OSX Specific
#

#
# author = © Copyright Info

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

# Kivy version to use
osx.kivy_version = 1.9.1

#
# Android specific
#

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

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

# (list) Permissions
#android.permissions = INTERNET

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

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

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

# (str) Android NDK version to use
#android.ndk = 17c

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

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

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

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

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

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

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

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

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

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

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

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

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

# (list) Android AAR archives to add (currently works only with sdl2_gradle
# bootstrap)
#android.add_aars =

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

# (list) 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)
#android.meta_data =

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

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

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

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

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


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

Logs

I# Check configuration tokens
# Ensure build layout
# Check configuration tokens
# Preparing build
# Check requirements for android
# Run 'dpkg --version'
# Cwd None
Programa de gestión de paquetes de Debian `dpkg' versión 1.19.0.5 (amd64).
Esto es software libre; consulte la Licencia Pública General de GNU versión 2 o
posterior para conocer las condiciones de copia. No hay NINGUNA garantía.
# Search for Git (git)
#  -> found at /usr/bin/git
# Search for Cython (cython)
#  -> found at /usr/local/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 '/usr/bin/python3 -m pip install -q --user \'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/daniel/.buildozer/android/platform/apache-ant-1.9.4
# Android SDK found at /home/daniel/.buildozer/android/platform/android-sdk
# Android NDK found at /home/daniel/.buildozer/android/platform/android-ndk-r17c
# Check application requirements
# Check garden requirements
# Compile platform
# Run '/usr/bin/python3 -m pythonforandroid.toolchain create --dist_name=myapp --bootstrap=sdl2 --requirements=python3,kivy --arch armeabi-v7a --copy-libs --color=always --storage-dir="/home/daniel/Descargas/apk/.buildozer/android/platform/build" --ndk-api=21'
# Cwd /home/daniel/Descargas/apk/.buildozer/android/platform/python-for-android
[INFO]:    Will compile for the following archs: armeabi-v7a
[INFO]:    Found Android API target in $ANDROIDAPI: 27
[INFO]:    Available Android APIs are (27)
[INFO]:    Requested API target 27 is available, continuing.
[INFO]:    Found NDK dir in $ANDROIDNDK: /home/daniel/.buildozer/android/platform/android-ndk-r17c
[INFO]:    Found NDK revision 17.2.4988734
[INFO]:    Getting NDK API version (i.e. minimum supported API) from user argument
[INFO]:    Found virtualenv at /home/daniel/.local/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]:    	myapp: min API 21, includes recipes (hostpython3, libffi, openssl, sdl2_image, sdl2_mixer, sdl2_ttf, sqlite3, python3, sdl2, six, pyjnius, android, kivy), built for archs (armeabi-v7a)
[INFO]:    myapp has compatible recipes, using this one
# Build the application #16
# Copy application source from /home/daniel/Descargas/apk
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app
# Copy /home/daniel/Descargas/apk/main.kv
# Copy /home/daniel/Descargas/apk/signature
# Copy /home/daniel/Descargas/apk/main.py
# Copy /home/daniel/Descargas/apk/enc_data
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs
# Copy /home/daniel/Descargas/apk/libs/io.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/archs.py
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/graph.py
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/bootstrap.py
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipetest.py
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/__init__.py
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/distribution.py
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/toolchain.py
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipe.py
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/python.py
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/logger.py
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/patching.py
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/util.py
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/build.py
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recommendations.py
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/bdistapk.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/bootstraps
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/bootstraps/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/bootstraps/service_only
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/bootstraps/service_only/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/bootstraps/webview
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/bootstraps/webview/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/bootstraps/sdl2
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/bootstraps/sdl2/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/bootstraps/empty
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/bootstraps/empty/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/bootstraps/pygame
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/bootstraps/pygame/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/bootstraps/pygame/build/tools
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/bootstraps/pygame/build/tools/biglink
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/bootstraps/pygame/build/tools/liblink
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/tools
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/tools/biglink
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/tools/liblink
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/zbar
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/zbar/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/secp256k1
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/secp256k1/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/python2
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/python2/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/m2crypto
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/m2crypto/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyproj
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/pyproj/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/cryptography
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/cryptography/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/opencv
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/opencv/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/cdecimal
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/cdecimal/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/cherrypy
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/cherrypy/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/cymunk
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/cymunk/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/zeroconf
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/zeroconf/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/ffpyplayer_codecs
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/ffpyplayer_codecs/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libpq
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/libpq/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/regex
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/regex/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libglob
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/libglob/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/dateutil
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/dateutil/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/websocket-client
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/websocket-client/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pil
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/pil/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/protobuf_cpp
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/protobuf_cpp/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/boost
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/boost/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/brokenrecipe
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/brokenrecipe/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/zope
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/zope/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/six
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/six/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/reportlab
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/reportlab/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libmysqlclient
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/libmysqlclient/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyasn1
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/pyasn1/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/sdl2_mixer
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/sdl2_mixer/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libshine
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/libshine/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pynacl
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/pynacl/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libzbar
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/libzbar/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/sympy
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/sympy/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/snappy
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/snappy/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pytz
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/pytz/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libcurl
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/libcurl/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/freetype
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/freetype/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/hostpython3crystax
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/hostpython3crystax/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/python3crystax
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/python3crystax/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/Pillow
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/Pillow/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyzbar
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/pyzbar/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/sqlalchemy
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/sqlalchemy/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/vispy
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/vispy/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/icu
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/icu/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/babel
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/babel/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/openal
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/openal/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyaml
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/pyaml/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/wsaccel
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/wsaccel/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/enum34
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/enum34/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/sdl2_image
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/sdl2_image/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyzmq
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/pyzmq/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/decorator
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/decorator/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyrxp
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/pyrxp/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/preppy
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/preppy/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pymunk
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/pymunk/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/x3dh
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/x3dh/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pbkdf2
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/pbkdf2/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyleveldb
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/pyleveldb/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libexpat
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/libexpat/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/storm
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/storm/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/sqlite3
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/sqlite3/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/kiwisolver
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/kiwisolver/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/ipaddress
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/ipaddress/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/harfbuzz
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/harfbuzz/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/simple-crypt
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/simple-crypt/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyyaml
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/pyyaml/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/python2legacy
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/python2legacy/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyethereum
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/pyethereum/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/ethash
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/ethash/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libsecp256k1
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/libsecp256k1/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/audiostream
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/audiostream/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/sdl2
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/sdl2/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/atom
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/atom/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/psycopg2
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/psycopg2/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyjnius
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/pyjnius/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/kivent_core
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/kivent_core/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libtribler
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/libtribler/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pysdl2
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/pysdl2/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/mysqldb
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/mysqldb/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/jedi
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/jedi/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libtorrent
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/libtorrent/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/apsw
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/apsw/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/librt
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/librt/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/xeddsa
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/xeddsa/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libzmq
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/libzmq/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/lxml
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/lxml/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/python3
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/python3/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/numpy
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/numpy/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/fontconfig
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/fontconfig/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/kivy
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/kivy/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/coverage
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/coverage/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/kivent_cymunk
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/kivent_cymunk/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libsodium
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/libsodium/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/kivent_particles
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/kivent_particles/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libnacl
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/libnacl/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/genericndkbuild
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/genericndkbuild/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/greenlet
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/greenlet/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/zope_interface
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/zope_interface/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libx264
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/libx264/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/scrypt
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/scrypt/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/hostpython2legacy
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/hostpython2legacy/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/twisted
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/twisted/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libxml2
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/libxml2/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/doubleratchet
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/doubleratchet/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/ujson
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/ujson/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/hostpython3
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/hostpython3/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyopenssl
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/pyopenssl/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/cffi
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/cffi/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/sdl2_ttf
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/sdl2_ttf/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libgeos
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/libgeos/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/hostpython2
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/hostpython2/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/android
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/android/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libiconv
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/libiconv/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/ffmpeg
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/ffmpeg/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyicu
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/pyicu/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/sdl
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/sdl/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/vlc
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/vlc/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/groestlcoin_hash
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/groestlcoin_hash/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/zbarlight
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/zbarlight/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyopenal
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/pyopenal/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/ffpyplayer
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/ffpyplayer/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/spine
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/spine/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/idna
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/idna/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/gevent-websocket
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/gevent-websocket/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/gevent
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/gevent/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyusb
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/pyusb/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libxslt
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/libxslt/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/netifaces
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/netifaces/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pygame
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/pygame/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/enaml
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/enaml/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libogg
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/libogg/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/msgpack-python
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/msgpack-python/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pygame_bootstrap_components
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/pygame_bootstrap_components/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pysha3
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/pysha3/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/setuptools
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/setuptools/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libffi
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/libffi/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/openssl
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/openssl/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/omemo
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/omemo/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/kivent_polygen
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/kivent_polygen/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/requests
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/requests/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pycparser
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/pycparser/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/feedparser
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/feedparser/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyogg
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/pyogg/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/flask
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/flask/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/jpeg
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/jpeg/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/evdev
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/evdev/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/shapely
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/shapely/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/omemo-backend-signal
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/omemo-backend-signal/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libvorbis
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/libvorbis/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pycryptodome
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/pycryptodome/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/ifaddrs
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/ifaddrs/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pycrypto
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/pycrypto/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/leveldb
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/leveldb/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/png
# Copy /home/daniel/Descargas/apk/libs/pythonforandroid/recipes/png/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy
# Copy /home/daniel/Descargas/apk/libs/kivy/factory_registers.py
# Copy /home/daniel/Descargas/apk/libs/kivy/animation.py
# Copy /home/daniel/Descargas/apk/libs/kivy/context.py
# Copy /home/daniel/Descargas/apk/libs/kivy/weakmethod.py
# Copy /home/daniel/Descargas/apk/libs/kivy/geometry.py
# Copy /home/daniel/Descargas/apk/libs/kivy/metrics.py
# Copy /home/daniel/Descargas/apk/libs/kivy/config.py
# Copy /home/daniel/Descargas/apk/libs/kivy/setupconfig.py
# Copy /home/daniel/Descargas/apk/libs/kivy/__init__.py
# Copy /home/daniel/Descargas/apk/libs/kivy/atlas.py
# Copy /home/daniel/Descargas/apk/libs/kivy/vector.py
# Copy /home/daniel/Descargas/apk/libs/kivy/interactive.py
# Copy /home/daniel/Descargas/apk/libs/kivy/compat.py
# Copy /home/daniel/Descargas/apk/libs/kivy/version.py
# Copy /home/daniel/Descargas/apk/libs/kivy/utils.py
# Copy /home/daniel/Descargas/apk/libs/kivy/cache.py
# Copy /home/daniel/Descargas/apk/libs/kivy/factory.py
# Copy /home/daniel/Descargas/apk/libs/kivy/resources.py
# Copy /home/daniel/Descargas/apk/libs/kivy/parser.py
# Copy /home/daniel/Descargas/apk/libs/kivy/logger.py
# Copy /home/daniel/Descargas/apk/libs/kivy/app.py
# Copy /home/daniel/Descargas/apk/libs/kivy/loader.py
# Copy /home/daniel/Descargas/apk/libs/kivy/event.py
# Copy /home/daniel/Descargas/apk/libs/kivy/support.py
# Copy /home/daniel/Descargas/apk/libs/kivy/base.py
# Copy /home/daniel/Descargas/apk/libs/kivy/gesture.py
# Copy /home/daniel/Descargas/apk/libs/kivy/multistroke.py
# Copy /home/daniel/Descargas/apk/libs/kivy/clock.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/data
# Copy /home/daniel/Descargas/apk/libs/kivy/data/style.kv
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/data/glsl
# Copy /home/daniel/Descargas/apk/libs/kivy/data/glsl/default.png
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/data/logo
# Copy /home/daniel/Descargas/apk/libs/kivy/data/logo/kivy-icon-512.png
# Copy /home/daniel/Descargas/apk/libs/kivy/data/logo/kivy-icon-32.png
# Copy /home/daniel/Descargas/apk/libs/kivy/data/logo/kivy-icon-128.png
# Copy /home/daniel/Descargas/apk/libs/kivy/data/logo/kivy-icon-24.png
# Copy /home/daniel/Descargas/apk/libs/kivy/data/logo/kivy-icon-48.png
# Copy /home/daniel/Descargas/apk/libs/kivy/data/logo/kivy-icon-16.png
# Copy /home/daniel/Descargas/apk/libs/kivy/data/logo/kivy-icon-256.png
# Copy /home/daniel/Descargas/apk/libs/kivy/data/logo/kivy-icon-64.png
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/data/images
# Copy /home/daniel/Descargas/apk/libs/kivy/data/images/cursor.png
# Copy /home/daniel/Descargas/apk/libs/kivy/data/images/defaulttheme-0.png
# Copy /home/daniel/Descargas/apk/libs/kivy/data/images/defaulttheme.atlas
# Copy /home/daniel/Descargas/apk/libs/kivy/data/images/defaultshape.png
# Copy /home/daniel/Descargas/apk/libs/kivy/data/images/testpattern.png
# Copy /home/daniel/Descargas/apk/libs/kivy/data/images/background.jpg
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/lang
# Copy /home/daniel/Descargas/apk/libs/kivy/lang/__init__.py
# Copy /home/daniel/Descargas/apk/libs/kivy/lang/builder.py
# Copy /home/daniel/Descargas/apk/libs/kivy/lang/parser.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/extras
# Copy /home/daniel/Descargas/apk/libs/kivy/extras/__init__.py
# Copy /home/daniel/Descargas/apk/libs/kivy/extras/highlight.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/network
# Copy /home/daniel/Descargas/apk/libs/kivy/network/__init__.py
# Copy /home/daniel/Descargas/apk/libs/kivy/network/urlrequest.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/modules
# Copy /home/daniel/Descargas/apk/libs/kivy/modules/keybinding.py
# Copy /home/daniel/Descargas/apk/libs/kivy/modules/screen.py
# Copy /home/daniel/Descargas/apk/libs/kivy/modules/__init__.py
# Copy /home/daniel/Descargas/apk/libs/kivy/modules/monitor.py
# Copy /home/daniel/Descargas/apk/libs/kivy/modules/cursor.py
# Copy /home/daniel/Descargas/apk/libs/kivy/modules/_webdebugger.py
# Copy /home/daniel/Descargas/apk/libs/kivy/modules/joycursor.py
# Copy /home/daniel/Descargas/apk/libs/kivy/modules/recorder.py
# Copy /home/daniel/Descargas/apk/libs/kivy/modules/webdebugger.py
# Copy /home/daniel/Descargas/apk/libs/kivy/modules/touchring.py
# Copy /home/daniel/Descargas/apk/libs/kivy/modules/inspector.py
# Copy /home/daniel/Descargas/apk/libs/kivy/modules/console.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core
# Copy /home/daniel/Descargas/apk/libs/kivy/core/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/text
# Copy /home/daniel/Descargas/apk/libs/kivy/core/text/text_sdl2.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/text/__init__.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/text/text_pygame.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/text/markup.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/text/text_pil.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/spelling
# Copy /home/daniel/Descargas/apk/libs/kivy/core/spelling/spelling_enchant.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/spelling/__init__.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/spelling/spelling_osxappkit.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/audio
# Copy /home/daniel/Descargas/apk/libs/kivy/core/audio/audio_gstplayer.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/audio/__init__.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/audio/audio_ffpyplayer.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/audio/audio_avplayer.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/audio/audio_pygame.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/camera
# Copy /home/daniel/Descargas/apk/libs/kivy/core/camera/__init__.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/camera/camera_opencv.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/camera/camera_android.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/camera/camera_gi.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/camera/camera_picamera.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/image
# Copy /home/daniel/Descargas/apk/libs/kivy/core/image/img_dds.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/image/img_sdl2.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/image/__init__.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/image/img_tex.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/image/img_pygame.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/image/img_gif.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/image/img_ffpyplayer.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/image/img_pil.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/gl
# Copy /home/daniel/Descargas/apk/libs/kivy/core/gl/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/video
# Copy /home/daniel/Descargas/apk/libs/kivy/core/video/video_ffmpeg.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/video/__init__.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/video/video_null.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/video/video_gstplayer.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/video/video_ffpyplayer.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/window
# Copy /home/daniel/Descargas/apk/libs/kivy/core/window/__init__.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/window/window_sdl2.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/window/window_pygame.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/window/window_egl_rpi.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/clipboard
# Copy /home/daniel/Descargas/apk/libs/kivy/core/clipboard/clipboard_android.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/clipboard/__init__.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/clipboard/clipboard_winctypes.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/clipboard/clipboard_gtk3.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/clipboard/clipboard_pygame.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/clipboard/clipboard_nspaste.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/clipboard/_clipboard_ext.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/clipboard/clipboard_xsel.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/clipboard/clipboard_xclip.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/clipboard/clipboard_sdl2.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/clipboard/clipboard_dummy.py
# Copy /home/daniel/Descargas/apk/libs/kivy/core/clipboard/clipboard_dbusklipper.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/graphics
# Copy /home/daniel/Descargas/apk/libs/kivy/graphics/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/graphics/cgl_backend
# Copy /home/daniel/Descargas/apk/libs/kivy/graphics/cgl_backend/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_graphics.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_uix_actionbar.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_window_info.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_uix_widget.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_lang.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_uix_listview.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_filechooser_unicode.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_rst_replace.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_properties.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_fonts.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_uix_stacklayout.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_lang_complex.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/__init__.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_clock.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_app.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_uix_relativelayout.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_clipboard.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_vector.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_filechooser.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_utils.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_mouse_multitouchsim.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_audio.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_issue_599.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_issue_1084.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_fbo_py2py3.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_uix_anchorlayout.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_doc_gallery.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_issue_883.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_urlrequest.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_uix_scrollview.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_uix_asyncimage.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/visual_test_label.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_widget.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_image.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_issue_1091.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_uix_textinput.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_video.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_multistroke.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_widget_walk.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_uix_layout.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_uix_gridlayout.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/common.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/perf_test_textinput.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_module_inspector.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_button.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_uix_slider.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_invalid_lang.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_knspace.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_issue_609.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_adapters.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_uix_boxlayout.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/testkv.kv
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_selection.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_animations.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tests/test_storage.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/lib
# Copy /home/daniel/Descargas/apk/libs/kivy/lib/__init__.py
# Copy /home/daniel/Descargas/apk/libs/kivy/lib/ddsfile.py
# Copy /home/daniel/Descargas/apk/libs/kivy/lib/mtdev.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/lib/vidcore_lite
# Copy /home/daniel/Descargas/apk/libs/kivy/lib/vidcore_lite/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/lib/gstplayer
# Copy /home/daniel/Descargas/apk/libs/kivy/lib/gstplayer/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/lib/osc
# Copy /home/daniel/Descargas/apk/libs/kivy/lib/osc/OSC.py
# Copy /home/daniel/Descargas/apk/libs/kivy/lib/osc/__init__.py
# Copy /home/daniel/Descargas/apk/libs/kivy/lib/osc/oscAPI.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/benchmark.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/__init__.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/report.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/texturecompress.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/stub-gl-debug.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/kviewer.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/generate-icons.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools/gles_compat
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/gles_compat/subset_gles.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools/pep8checker
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/pep8checker/pep8kivy.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/pep8checker/pep8.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools/highlight
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/highlight/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools/packaging
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/packaging/__init__.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/packaging/factory.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools/packaging/pyinstaller_hooks
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/packaging/pyinstaller_hooks/pyi_rth_kivy.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/packaging/pyinstaller_hooks/__init__.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/packaging/pyinstaller_hooks/__main__.py
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/packaging/pyinstaller_hooks/hook-kivy.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools/theming/defaulttheme
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/vkeyboard_background.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/sliderv_background_disabled.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/filechooser_selected.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/checkbox_disabled_on.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/ring.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/splitter_h.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/sliderv_background.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/progressbar_background.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/bubble_btn.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/tab_btn_disabled.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/vkeyboard_key_normal.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/audio-volume-low.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/switch-button.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/checkbox_off.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/sliderh_background.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/tab_btn_disabled_pressed.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/action_group.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/checkbox_on.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/button.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/audio-volume-muted.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/tree_opened.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/splitter_disabled_h.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/checkbox_radio_disabled_on.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/action_group_disabled.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/media-playback-pause.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/spinner_pressed.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/player-play-overlay.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/modalview-background.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/action_bar.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/slider_cursor_disabled.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/vkeyboard_disabled_key_down.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/tab_btn_pressed.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/slider_cursor.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/splitter_down_h.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/media-playback-stop.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/spinner_disabled.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/checkbox_radio_on.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/action_item.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/switch-background_disabled.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/bubble_arrow.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/button_disabled_pressed.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/vkeyboard_disabled_background.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/splitter_down.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/separator.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/media-playback-start.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/selector_right.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/progressbar.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/switch-background.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/player-background.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/checkbox_radio_disabled_off.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/splitter_disabled_down.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/textinput_disabled_active.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/selector_left.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/spinner.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/selector_middle.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/splitter_disabled.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/splitter_grip.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/image-missing.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/button_pressed.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/vkeyboard_disabled_key_normal.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/tab_disabled.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/bubble.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/textinput_active.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/close.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/tree_closed.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/previous_normal.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/splitter.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/checkbox_disabled_off.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/button_disabled.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/bubble_btn_pressed.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/splitter_disabled_down_h.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/vkeyboard_key_down.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/action_view.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/splitter_grip_h.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/tab_btn.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/switch-button_disabled.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/filechooser_folder.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/textinput_disabled.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/sliderh_background_disabled.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/checkbox_radio_off.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/filechooser_file.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/audio-volume-high.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/action_group_down.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/audio-volume-medium.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/textinput.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/tab.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/overflow.png
# Copy /home/daniel/Descargas/apk/libs/kivy/tools/theming/defaulttheme/action_item_down.png
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/garden
# Copy /home/daniel/Descargas/apk/libs/kivy/garden/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/storage
# Copy /home/daniel/Descargas/apk/libs/kivy/storage/dictstore.py
# Copy /home/daniel/Descargas/apk/libs/kivy/storage/__init__.py
# Copy /home/daniel/Descargas/apk/libs/kivy/storage/redisstore.py
# Copy /home/daniel/Descargas/apk/libs/kivy/storage/jsonstore.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/deps
# Copy /home/daniel/Descargas/apk/libs/kivy/deps/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/deps/glew
# Copy /home/daniel/Descargas/apk/libs/kivy/deps/glew/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/deps/sdl2
# Copy /home/daniel/Descargas/apk/libs/kivy/deps/sdl2/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/deps/gstreamer
# Copy /home/daniel/Descargas/apk/libs/kivy/deps/gstreamer/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/deps/angle
# Copy /home/daniel/Descargas/apk/libs/kivy/deps/angle/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input
# Copy /home/daniel/Descargas/apk/libs/kivy/input/motionevent.py
# Copy /home/daniel/Descargas/apk/libs/kivy/input/__init__.py
# Copy /home/daniel/Descargas/apk/libs/kivy/input/recorder.py
# Copy /home/daniel/Descargas/apk/libs/kivy/input/factory.py
# Copy /home/daniel/Descargas/apk/libs/kivy/input/shape.py
# Copy /home/daniel/Descargas/apk/libs/kivy/input/provider.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input/providers
# Copy /home/daniel/Descargas/apk/libs/kivy/input/providers/wm_pen.py
# Copy /home/daniel/Descargas/apk/libs/kivy/input/providers/wm_touch.py
# Copy /home/daniel/Descargas/apk/libs/kivy/input/providers/__init__.py
# Copy /home/daniel/Descargas/apk/libs/kivy/input/providers/leapfinger.py
# Copy /home/daniel/Descargas/apk/libs/kivy/input/providers/mactouch.py
# Copy /home/daniel/Descargas/apk/libs/kivy/input/providers/hidinput.py
# Copy /home/daniel/Descargas/apk/libs/kivy/input/providers/androidjoystick.py
# Copy /home/daniel/Descargas/apk/libs/kivy/input/providers/probesysfs.py
# Copy /home/daniel/Descargas/apk/libs/kivy/input/providers/wm_common.py
# Copy /home/daniel/Descargas/apk/libs/kivy/input/providers/mtdev.py
# Copy /home/daniel/Descargas/apk/libs/kivy/input/providers/mouse.py
# Copy /home/daniel/Descargas/apk/libs/kivy/input/providers/linuxwacom.py
# Copy /home/daniel/Descargas/apk/libs/kivy/input/providers/tuio.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input/postproc
# Copy /home/daniel/Descargas/apk/libs/kivy/input/postproc/tripletap.py
# Copy /home/daniel/Descargas/apk/libs/kivy/input/postproc/__init__.py
# Copy /home/daniel/Descargas/apk/libs/kivy/input/postproc/retaintouch.py
# Copy /home/daniel/Descargas/apk/libs/kivy/input/postproc/calibration.py
# Copy /home/daniel/Descargas/apk/libs/kivy/input/postproc/dejitter.py
# Copy /home/daniel/Descargas/apk/libs/kivy/input/postproc/ignorelist.py
# Copy /home/daniel/Descargas/apk/libs/kivy/input/postproc/doubletap.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/effects
# Copy /home/daniel/Descargas/apk/libs/kivy/effects/__init__.py
# Copy /home/daniel/Descargas/apk/libs/kivy/effects/scroll.py
# Copy /home/daniel/Descargas/apk/libs/kivy/effects/kinetic.py
# Copy /home/daniel/Descargas/apk/libs/kivy/effects/dampedscroll.py
# Copy /home/daniel/Descargas/apk/libs/kivy/effects/opacityscroll.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/settings.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/modalview.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/video.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/rst.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/stacklayout.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/spinner.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/recyclegridlayout.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/colorpicker.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/__init__.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/abstractview.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/dropdown.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/togglebutton.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/floatlayout.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/widget.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/sandbox.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/image.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/scatter.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/accordion.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/videoplayer.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/screenmanager.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/label.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/recyclelayout.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/actionbar.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/relativelayout.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/effectwidget.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/switch.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/recycleboxlayout.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/button.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/anchorlayout.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/bubble.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/progressbar.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/stencilview.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/splitter.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/pagelayout.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/textinput.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/checkbox.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/filechooser.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/tabbedpanel.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/selectableview.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/scrollview.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/camera.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/scatterlayout.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/slider.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/treeview.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/carousel.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/gesturesurface.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/gridlayout.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/popup.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/vkeyboard.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/listview.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/layout.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/codeinput.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/boxlayout.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/recycleview
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/recycleview/views.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/recycleview/__init__.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/recycleview/datamodel.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/recycleview/layout.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/behaviors
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/behaviors/codenavigation.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/behaviors/__init__.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/behaviors/knspace.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/behaviors/togglebutton.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/behaviors/cover.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/behaviors/touchripple.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/behaviors/emacs.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/behaviors/button.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/behaviors/focus.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/behaviors/compoundselection.py
# Copy /home/daniel/Descargas/apk/libs/kivy/uix/behaviors/drag.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/adapters
# Copy /home/daniel/Descargas/apk/libs/kivy/adapters/models.py
# Copy /home/daniel/Descargas/apk/libs/kivy/adapters/adapter.py
# Copy /home/daniel/Descargas/apk/libs/kivy/adapters/args_converters.py
# Copy /home/daniel/Descargas/apk/libs/kivy/adapters/__init__.py
# Copy /home/daniel/Descargas/apk/libs/kivy/adapters/listadapter.py
# Copy /home/daniel/Descargas/apk/libs/kivy/adapters/simplelistadapter.py
# Copy /home/daniel/Descargas/apk/libs/kivy/adapters/dictadapter.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto
# Copy /home/daniel/Descargas/apk/libs/Crypto/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Hash
# Copy /home/daniel/Descargas/apk/libs/Crypto/Hash/SHAKE128.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Hash/SHA384.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Hash/SHA3_224.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Hash/RIPEMD160.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Hash/CMAC.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Hash/__init__.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Hash/SHA512.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Hash/SHA256.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Hash/BLAKE2b.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Hash/SHA224.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Hash/HMAC.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Hash/MD5.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Hash/SHA.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Hash/MD2.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Hash/SHA3_512.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Hash/Poly1305.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Hash/keccak.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Hash/RIPEMD.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Hash/MD4.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Hash/SHAKE256.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Hash/BLAKE2s.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Hash/SHA3_256.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Hash/SHA3_384.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Hash/SHA1.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Random
# Copy /home/daniel/Descargas/apk/libs/Crypto/Random/random.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Random/__init__.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Math
# Copy /home/daniel/Descargas/apk/libs/Crypto/Math/__init__.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Math/Numbers.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Math/Primality.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Math/_IntegerCustom.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Math/_IntegerGMP.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Math/_IntegerNative.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Math/_IntegerBase.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Cipher
# Copy /home/daniel/Descargas/apk/libs/Crypto/Cipher/ChaCha20_Poly1305.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Cipher/__init__.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Cipher/_mode_gcm.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Cipher/_mode_ofb.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Cipher/DES3.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Cipher/Blowfish.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Cipher/_mode_cfb.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Cipher/Salsa20.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Cipher/_mode_cbc.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Cipher/PKCS1_v1_5.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Cipher/_mode_openpgp.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Cipher/ARC4.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Cipher/_mode_ctr.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Cipher/PKCS1_OAEP.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Cipher/ChaCha20.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Cipher/_mode_ocb.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Cipher/ARC2.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Cipher/DES.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Cipher/_mode_eax.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Cipher/AES.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Cipher/_mode_ecb.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Cipher/_mode_ccm.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Cipher/_mode_siv.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Cipher/CAST.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/IO
# Copy /home/daniel/Descargas/apk/libs/Crypto/IO/PKCS8.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/IO/__init__.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/IO/_PBES.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/IO/PEM.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/PublicKey
# Copy /home/daniel/Descargas/apk/libs/Crypto/PublicKey/ECC.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/PublicKey/__init__.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/PublicKey/DSA.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/PublicKey/ElGamal.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/PublicKey/RSA.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Util
# Copy /home/daniel/Descargas/apk/libs/Crypto/Util/_file_system.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Util/py3compat.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Util/_raw_api.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Util/__init__.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Util/Padding.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Util/RFC1751.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Util/asn1.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Util/_cpu_features.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Util/Counter.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Util/number.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Util/strxor.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Signature
# Copy /home/daniel/Descargas/apk/libs/Crypto/Signature/__init__.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Signature/PKCS1_PSS.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Signature/PKCS1_v1_5.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Signature/pkcs1_15.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Signature/DSS.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Signature/pss.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Protocol
# Copy /home/daniel/Descargas/apk/libs/Crypto/Protocol/KDF.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Protocol/__init__.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/Protocol/SecretSharing.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/st_common.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/__init__.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/__main__.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/loader.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Hash
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Hash/test_keccak.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Hash/__init__.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Hash/test_MD5.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Hash/test_SHA3_384.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Hash/test_BLAKE2.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Hash/test_SHA512.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Hash/test_MD4.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Hash/test_SHAKE.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Hash/test_CMAC.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Hash/test_HMAC.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Hash/test_SHA1.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Hash/test_MD2.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Hash/test_SHA3_256.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Hash/test_Poly1305.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Hash/test_RIPEMD160.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Hash/test_SHA256.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Hash/common.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Hash/test_SHA3_512.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Hash/test_SHA224.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Hash/test_SHA3_224.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Hash/test_SHA384.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Random
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Random/__init__.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Random/test_random.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Math
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Math/__init__.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Math/test_Numbers.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Math/test_Primality.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Math/test_modexp.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Cipher
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Cipher/test_OCB.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Cipher/test_Salsa20.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Cipher/test_EAX.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Cipher/test_DES.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Cipher/test_SIV.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Cipher/test_pkcs1_15.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Cipher/test_GCM.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Cipher/__init__.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Cipher/test_CFB.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Cipher/test_DES3.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Cipher/test_ARC4.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Cipher/test_ChaCha20_Poly1305.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Cipher/test_CAST.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Cipher/test_ARC2.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Cipher/test_OFB.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Cipher/test_CCM.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Cipher/test_Blowfish.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Cipher/test_ChaCha20.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Cipher/test_CTR.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Cipher/test_AES.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Cipher/test_OpenPGP.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Cipher/common.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Cipher/test_CBC.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/IO
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/IO/test_PKCS8.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/IO/__init__.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/IO/test_PBES.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/PublicKey
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/PublicKey/test_RSA.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/PublicKey/__init__.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/PublicKey/test_ECC.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/PublicKey/test_DSA.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/PublicKey/test_ElGamal.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/PublicKey/test_import_ECC.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/PublicKey/test_import_RSA.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/PublicKey/test_import_DSA.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Util
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Util/test_asn1.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Util/test_Counter.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Util/test_Padding.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Util/__init__.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Util/test_strxor.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Util/test_number.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Signature
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Signature/test_pkcs1_15.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Signature/__init__.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Signature/test_pss.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Signature/test_dss.py
# Create directory /home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Protocol
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Protocol/test_SecretSharing.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Protocol/__init__.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Protocol/test_rfc1751.py
# Copy /home/daniel/Descargas/apk/libs/Crypto/SelfTest/Protocol/test_KDF.py
# Package the application
# project.properties updated
# Gradle project detected, copy files /home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/src/main/java
# Run '/usr/bin/python3 -m pythonforandroid.toolchain apk --debug --bootstrap=sdl2 --dist_name myapp --name \'My Application\' --version 0.1 --package org.test.myapp --android_api 27 --minsdk 21 --ndk-api 21 --private /home/daniel/Descargas/apk/.buildozer/android/app --orientation portrait --window --copy-libs --arch armeabi-v7a --color=always --storage-dir="/home/daniel/Descargas/apk/.buildozer/android/platform/build" --ndk-api=21'
# Cwd /home/daniel/Descargas/apk/.buildozer/android/platform/python-for-android
[INFO]:    Will compile for the following archs: armeabi-v7a
[INFO]:    Getting Android API version from user argument: 27
[INFO]:    Available Android APIs are (27)
[INFO]:    Requested API target 27 is available, continuing.
[INFO]:    Found NDK dir in $ANDROIDNDK: /home/daniel/.buildozer/android/platform/android-ndk-r17c
[INFO]:    Found NDK revision 17.2.4988734
[INFO]:    Getting NDK API version (i.e. minimum supported API) from user argument
[INFO]:    Found virtualenv at /home/daniel/.local/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]:    	myapp: min API 21, includes recipes (hostpython3, libffi, openssl, sdl2_image, sdl2_mixer, sdl2_ttf, sqlite3, python3, sdl2, six, pyjnius, android, kivy), built for archs (armeabi-v7a)
[INFO]:    myapp has compatible recipes, using this one
[INFO]:    Of the existing distributions, the following meet the given requirements:
[INFO]:    	myapp: min API 21, includes recipes (hostpython3, libffi, openssl, sdl2_image, sdl2_mixer, sdl2_ttf, sqlite3, python3, sdl2, six, pyjnius, android, kivy), built for archs (armeabi-v7a)
[INFO]:    myapp has compatible recipes, using this one
[INFO]:    -> directory context /home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp
Listing '/tmp/p4a-extra-env-26axvl1u'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/_applibs'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Cipher'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Cipher/AES.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Cipher/ARC2.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Cipher/ARC4.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Cipher/Blowfish.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Cipher/CAST.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Cipher/ChaCha20.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Cipher/ChaCha20_Poly1305.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Cipher/DES.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Cipher/DES3.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Cipher/PKCS1_OAEP.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Cipher/PKCS1_v1_5.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Cipher/Salsa20.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Cipher/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Cipher/_mode_cbc.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Cipher/_mode_ccm.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Cipher/_mode_cfb.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Cipher/_mode_ctr.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Cipher/_mode_eax.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Cipher/_mode_ecb.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Cipher/_mode_gcm.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Cipher/_mode_ocb.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Cipher/_mode_ofb.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Cipher/_mode_openpgp.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Cipher/_mode_siv.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Hash'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Hash/BLAKE2b.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Hash/BLAKE2s.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Hash/CMAC.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Hash/HMAC.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Hash/MD2.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Hash/MD4.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Hash/MD5.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Hash/Poly1305.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Hash/RIPEMD.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Hash/RIPEMD160.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Hash/SHA.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Hash/SHA1.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Hash/SHA224.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Hash/SHA256.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Hash/SHA384.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Hash/SHA3_224.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Hash/SHA3_256.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Hash/SHA3_384.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Hash/SHA3_512.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Hash/SHA512.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Hash/SHAKE128.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Hash/SHAKE256.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Hash/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Hash/keccak.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/IO'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/IO/PEM.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/IO/PKCS8.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/IO/_PBES.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/IO/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Math'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Math/Numbers.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Math/Primality.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Math/_IntegerBase.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Math/_IntegerCustom.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Math/_IntegerGMP.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Math/_IntegerNative.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Math/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Protocol'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Protocol/KDF.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Protocol/SecretSharing.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Protocol/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/PublicKey'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/PublicKey/DSA.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/PublicKey/ECC.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/PublicKey/ElGamal.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/PublicKey/RSA.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/PublicKey/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Random'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Random/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Random/random.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Cipher'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Cipher/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Cipher/common.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Cipher/test_AES.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Cipher/test_ARC2.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Cipher/test_ARC4.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Cipher/test_Blowfish.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Cipher/test_CAST.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Cipher/test_CBC.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Cipher/test_CCM.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Cipher/test_CFB.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Cipher/test_CTR.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Cipher/test_ChaCha20.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Cipher/test_ChaCha20_Poly1305.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Cipher/test_DES.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Cipher/test_DES3.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Cipher/test_EAX.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Cipher/test_GCM.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Cipher/test_OCB.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Cipher/test_OFB.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Cipher/test_OpenPGP.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Cipher/test_SIV.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Cipher/test_Salsa20.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Cipher/test_pkcs1_15.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Hash'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Hash/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Hash/common.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Hash/test_BLAKE2.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Hash/test_CMAC.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Hash/test_HMAC.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Hash/test_MD2.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Hash/test_MD4.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Hash/test_MD5.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Hash/test_Poly1305.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Hash/test_RIPEMD160.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Hash/test_SHA1.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Hash/test_SHA224.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Hash/test_SHA256.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Hash/test_SHA384.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Hash/test_SHA3_224.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Hash/test_SHA3_256.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Hash/test_SHA3_384.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Hash/test_SHA3_512.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Hash/test_SHA512.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Hash/test_SHAKE.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Hash/test_keccak.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/IO'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/IO/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/IO/test_PBES.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/IO/test_PKCS8.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Math'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Math/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Math/test_Numbers.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Math/test_Primality.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Math/test_modexp.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Protocol'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Protocol/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Protocol/test_KDF.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Protocol/test_SecretSharing.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Protocol/test_rfc1751.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/PublicKey'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/PublicKey/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/PublicKey/test_DSA.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/PublicKey/test_ECC.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/PublicKey/test_ElGamal.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/PublicKey/test_RSA.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/PublicKey/test_import_DSA.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/PublicKey/test_import_ECC.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/PublicKey/test_import_RSA.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Random'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Random/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Random/test_random.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Signature'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Signature/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Signature/test_dss.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Signature/test_pkcs1_15.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Signature/test_pss.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Util'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Util/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Util/test_Counter.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Util/test_Padding.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Util/test_asn1.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Util/test_number.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/Util/test_strxor.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/__main__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/loader.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/SelfTest/st_common.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Signature'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Signature/DSS.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Signature/PKCS1_PSS.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Signature/PKCS1_v1_5.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Signature/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Signature/pkcs1_15.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Signature/pss.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Util'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Util/Counter.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Util/Padding.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Util/RFC1751.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Util/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Util/_cpu_features.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Util/_file_system.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Util/_raw_api.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Util/asn1.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Util/number.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Util/py3compat.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/Util/strxor.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/Crypto/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/io.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/adapters'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/adapters/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/adapters/adapter.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/adapters/args_converters.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/adapters/dictadapter.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/adapters/listadapter.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/adapters/models.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/adapters/simplelistadapter.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/animation.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/app.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/atlas.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/base.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/cache.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/clock.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/compat.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/config.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/context.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/audio'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/audio/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/audio/audio_avplayer.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/audio/audio_ffpyplayer.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/audio/audio_gstplayer.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/audio/audio_pygame.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/camera'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/camera/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/camera/camera_android.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/camera/camera_gi.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/camera/camera_opencv.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/camera/camera_picamera.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/clipboard'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/clipboard/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/clipboard/_clipboard_ext.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/clipboard/clipboard_android.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/clipboard/clipboard_dbusklipper.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/clipboard/clipboard_dummy.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/clipboard/clipboard_gtk3.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/clipboard/clipboard_nspaste.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/clipboard/clipboard_pygame.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/clipboard/clipboard_sdl2.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/clipboard/clipboard_winctypes.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/clipboard/clipboard_xclip.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/clipboard/clipboard_xsel.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/gl'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/gl/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/image'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/image/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/image/img_dds.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/image/img_ffpyplayer.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/image/img_gif.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/image/img_pil.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/image/img_pygame.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/image/img_sdl2.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/image/img_tex.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/spelling'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/spelling/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/spelling/spelling_enchant.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/spelling/spelling_osxappkit.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/text'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/text/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/text/markup.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/text/text_pil.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/text/text_pygame.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/text/text_sdl2.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/video'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/video/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/video/video_ffmpeg.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/video/video_ffpyplayer.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/video/video_gstplayer.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/video/video_null.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/window'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/window/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/window/window_egl_rpi.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/window/window_pygame.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/core/window/window_sdl2.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/data'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/data/glsl'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/data/images'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/data/logo'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/deps'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/deps/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/deps/angle'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/deps/angle/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/deps/glew'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/deps/glew/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/deps/gstreamer'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/deps/gstreamer/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/deps/sdl2'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/deps/sdl2/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/effects'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/effects/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/effects/dampedscroll.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/effects/kinetic.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/effects/opacityscroll.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/effects/scroll.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/event.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/extras'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/extras/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/extras/highlight.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/factory.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/factory_registers.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/garden'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/garden/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/geometry.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/gesture.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/graphics'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/graphics/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/graphics/cgl_backend'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/graphics/cgl_backend/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input/factory.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input/motionevent.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input/postproc'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input/postproc/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input/postproc/calibration.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input/postproc/dejitter.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input/postproc/doubletap.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input/postproc/ignorelist.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input/postproc/retaintouch.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input/postproc/tripletap.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input/provider.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input/providers'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input/providers/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input/providers/androidjoystick.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input/providers/hidinput.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input/providers/leapfinger.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input/providers/linuxwacom.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input/providers/mactouch.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input/providers/mouse.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input/providers/mtdev.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input/providers/probesysfs.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input/providers/tuio.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input/providers/wm_common.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input/providers/wm_pen.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input/providers/wm_touch.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input/recorder.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/input/shape.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/interactive.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/lang'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/lang/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/lang/builder.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/lang/parser.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/lib'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/lib/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/lib/ddsfile.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/lib/gstplayer'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/lib/gstplayer/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/lib/mtdev.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/lib/osc'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/lib/osc/OSC.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/lib/osc/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/lib/osc/oscAPI.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/lib/vidcore_lite'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/lib/vidcore_lite/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/loader.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/logger.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/metrics.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/modules'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/modules/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/modules/_webdebugger.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/modules/console.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/modules/cursor.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/modules/inspector.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/modules/joycursor.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/modules/keybinding.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/modules/monitor.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/modules/recorder.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/modules/screen.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/modules/touchring.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/modules/webdebugger.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/multistroke.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/network'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/network/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/network/urlrequest.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/parser.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/resources.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/setupconfig.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/storage'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/storage/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/storage/dictstore.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/storage/jsonstore.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/storage/redisstore.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/support.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/common.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/perf_test_textinput.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_adapters.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_animations.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_app.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_audio.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_clipboard.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_clock.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_doc_gallery.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_fbo_py2py3.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_filechooser.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_filechooser_unicode.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_fonts.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_graphics.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_image.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_invalid_lang.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_issue_1084.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_issue_1091.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_issue_599.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_issue_609.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_issue_883.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_knspace.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_lang.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_lang_complex.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_module_inspector.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_mouse_multitouchsim.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_multistroke.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_properties.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_rst_replace.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_selection.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_storage.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_uix_actionbar.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_uix_anchorlayout.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_uix_asyncimage.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_uix_boxlayout.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_uix_gridlayout.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_uix_layout.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_uix_listview.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_uix_relativelayout.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_uix_scrollview.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_uix_slider.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_uix_stacklayout.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_uix_textinput.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_uix_widget.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_urlrequest.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_utils.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_vector.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_video.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_widget.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_widget_walk.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/test_window_info.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tests/visual_test_label.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools/benchmark.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools/generate-icons.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools/gles_compat'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools/gles_compat/subset_gles.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools/highlight'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools/highlight/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools/kviewer.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools/packaging'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools/packaging/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools/packaging/factory.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools/packaging/pyinstaller_hooks'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools/packaging/pyinstaller_hooks/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools/packaging/pyinstaller_hooks/__main__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools/packaging/pyinstaller_hooks/hook-kivy.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools/packaging/pyinstaller_hooks/pyi_rth_kivy.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools/pep8checker'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools/pep8checker/pep8.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools/pep8checker/pep8kivy.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools/report.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools/stub-gl-debug.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools/texturecompress.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools/theming'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/tools/theming/defaulttheme'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/abstractview.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/accordion.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/actionbar.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/anchorlayout.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/behaviors'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/behaviors/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/behaviors/button.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/behaviors/codenavigation.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/behaviors/compoundselection.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/behaviors/cover.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/behaviors/drag.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/behaviors/emacs.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/behaviors/focus.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/behaviors/knspace.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/behaviors/togglebutton.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/behaviors/touchripple.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/boxlayout.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/bubble.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/button.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/camera.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/carousel.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/checkbox.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/codeinput.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/colorpicker.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/dropdown.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/effectwidget.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/filechooser.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/floatlayout.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/gesturesurface.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/gridlayout.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/image.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/label.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/layout.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/listview.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/modalview.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/pagelayout.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/popup.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/progressbar.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/recycleboxlayout.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/recyclegridlayout.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/recyclelayout.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/recycleview'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/recycleview/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/recycleview/datamodel.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/recycleview/layout.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/recycleview/views.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/relativelayout.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/rst.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/sandbox.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/scatter.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/scatterlayout.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/screenmanager.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/scrollview.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/selectableview.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/settings.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/slider.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/spinner.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/splitter.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/stacklayout.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/stencilview.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/switch.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/tabbedpanel.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/textinput.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/togglebutton.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/treeview.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/video.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/videoplayer.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/vkeyboard.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/uix/widget.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/utils.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/vector.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/version.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/kivy/weakmethod.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/archs.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/bdistapk.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/bootstrap.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/bootstraps'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/bootstraps/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/bootstraps/empty'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/bootstraps/empty/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/bootstraps/pygame'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/bootstraps/pygame/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/bootstraps/pygame/build'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/bootstraps/pygame/build/tools'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/bootstraps/sdl2'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/bootstraps/sdl2/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/bootstraps/service_only'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/bootstraps/service_only/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/bootstraps/webview'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/bootstraps/webview/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/build.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/distribution.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/graph.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/logger.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/patching.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/python.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipe.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/Pillow'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/Pillow/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/android'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/android/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/apsw'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/apsw/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/atom'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/atom/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/audiostream'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/audiostream/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/babel'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/babel/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/boost'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/boost/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/brokenrecipe'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/brokenrecipe/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/cdecimal'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/cdecimal/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/cffi'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/cffi/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/cherrypy'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/cherrypy/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/coverage'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/coverage/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/cryptography'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/cryptography/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/cymunk'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/cymunk/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/dateutil'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/dateutil/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/decorator'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/decorator/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/doubleratchet'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/doubleratchet/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/enaml'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/enaml/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/enum34'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/enum34/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/ethash'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/ethash/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/evdev'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/evdev/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/feedparser'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/feedparser/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/ffmpeg'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/ffmpeg/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/ffpyplayer'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/ffpyplayer/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/ffpyplayer_codecs'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/ffpyplayer_codecs/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/flask'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/flask/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/fontconfig'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/fontconfig/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/freetype'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/freetype/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/genericndkbuild'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/genericndkbuild/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/gevent'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/gevent/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/gevent-websocket'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/gevent-websocket/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/greenlet'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/greenlet/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/groestlcoin_hash'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/groestlcoin_hash/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/harfbuzz'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/harfbuzz/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/hostpython2'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/hostpython2/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/hostpython2legacy'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/hostpython2legacy/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/hostpython3'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/hostpython3/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/hostpython3crystax'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/hostpython3crystax/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/icu'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/icu/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/idna'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/idna/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/ifaddrs'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/ifaddrs/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/ipaddress'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/ipaddress/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/jedi'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/jedi/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/jpeg'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/jpeg/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/kivent_core'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/kivent_core/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/kivent_cymunk'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/kivent_cymunk/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/kivent_particles'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/kivent_particles/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/kivent_polygen'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/kivent_polygen/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/kivy'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/kivy/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/kiwisolver'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/kiwisolver/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/leveldb'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/leveldb/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libcurl'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libcurl/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libexpat'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libexpat/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libffi'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libffi/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libgeos'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libgeos/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libglob'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libglob/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libiconv'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libiconv/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libmysqlclient'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libmysqlclient/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libnacl'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libnacl/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libogg'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libogg/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libpq'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libpq/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/librt'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/librt/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libsecp256k1'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libsecp256k1/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libshine'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libshine/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libsodium'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libsodium/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libtorrent'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libtorrent/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libtribler'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libtribler/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libvorbis'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libvorbis/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libx264'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libx264/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libxml2'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libxml2/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libxslt'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libxslt/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libzbar'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libzbar/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libzmq'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/libzmq/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/lxml'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/lxml/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/m2crypto'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/m2crypto/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/msgpack-python'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/msgpack-python/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/mysqldb'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/mysqldb/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/netifaces'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/netifaces/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/numpy'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/numpy/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/omemo'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/omemo/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/omemo-backend-signal'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/omemo-backend-signal/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/openal'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/openal/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/opencv'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/opencv/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/openssl'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/openssl/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pbkdf2'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pbkdf2/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pil'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pil/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/png'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/png/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/preppy'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/preppy/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/protobuf_cpp'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/protobuf_cpp/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/psycopg2'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/psycopg2/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyaml'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyaml/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyasn1'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyasn1/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pycparser'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pycparser/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pycrypto'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pycrypto/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pycryptodome'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pycryptodome/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyethereum'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyethereum/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pygame'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pygame/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pygame_bootstrap_components'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pygame_bootstrap_components/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyicu'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyicu/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyjnius'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyjnius/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyleveldb'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyleveldb/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pymunk'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pymunk/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pynacl'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pynacl/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyogg'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyogg/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyopenal'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyopenal/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyopenssl'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyopenssl/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyproj'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyproj/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyrxp'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyrxp/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pysdl2'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pysdl2/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pysha3'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pysha3/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/python2'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/python2/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/python2legacy'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/python2legacy/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/python3'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/python3/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/python3crystax'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/python3crystax/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pytz'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pytz/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyusb'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyusb/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyyaml'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyyaml/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyzbar'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyzbar/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyzmq'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/pyzmq/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/regex'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/regex/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/reportlab'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/reportlab/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/requests'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/requests/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/scrypt'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/scrypt/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/sdl'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/sdl/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/sdl2'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/sdl2/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/sdl2_image'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/sdl2_image/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/sdl2_mixer'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/sdl2_mixer/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/sdl2_ttf'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/sdl2_ttf/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/secp256k1'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/secp256k1/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/setuptools'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/setuptools/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/shapely'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/shapely/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/simple-crypt'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/simple-crypt/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/six'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/six/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/snappy'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/snappy/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/spine'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/spine/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/sqlalchemy'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/sqlalchemy/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/sqlite3'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/sqlite3/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/storm'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/storm/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/sympy'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/sympy/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/twisted'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/twisted/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/ujson'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/ujson/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/vispy'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/vispy/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/vlc'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/vlc/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/websocket-client'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/websocket-client/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/wsaccel'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/wsaccel/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/x3dh'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/x3dh/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/xeddsa'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/xeddsa/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/zbar'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/zbar/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/zbarlight'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/zbarlight/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/zeroconf'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/zeroconf/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/zope'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/zope/__init__.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/zope_interface'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipes/zope_interface/__init__.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recipetest.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/recommendations.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/toolchain.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/tools'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/libs/pythonforandroid/util.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/main.py'...
Compiling '/home/daniel/Descargas/apk/.buildozer/android/app/sitecustomize.py'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/modules'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/android'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/jnius'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/jnius/src'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/jnius/src/org'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/jnius/src/org/jnius'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/core'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/core/audio'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/core/camera'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/core/clipboard'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/core/gl'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/core/image'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/core/spelling'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/core/text'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/core/video'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/core/window'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/data'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/data/fonts'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/data/glsl'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/data/images'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/data/keyboards'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/data/logo'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/deps'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/effects'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/extras'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/garden'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/graphics'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/graphics/cgl_backend'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/include'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/input'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/input/postproc'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/input/providers'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/lang'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/lib'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/lib/gstplayer'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/lib/vidcore_lite'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/modules'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/network'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/storage'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/tools'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/tools/gles_compat'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/tools/highlight'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/tools/packaging'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/tools/packaging/pyinstaller_hooks'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/tools/pep8checker'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/tools/theming'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/tools/theming/defaulttheme'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/uix'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/uix/behaviors'...
Listing '/home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/_python_bundle/_python_bundle/site-packages/kivy/uix/recycleview'...
[INFO]:    Selecting java build tool:
[INFO]:    Detected highest available build tools version to be 29.0.0-rc3
[INFO]:        Building with gradle, as gradle executable is present
[DEBUG]:   -> running gradlew assembleDebug
[DEBUG]:   	
[DEBUG]:   	BUILD SUCCESSFUL in 18s
[DEBUG]:   	27 actionable tasks: 4 executed, 23 up-to-date

[INFO]:    <- directory context /home/daniel/Descargas/apk/.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/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/build/outputs/apk/debug/myapp-debug.apk
[INFO]:    # Add version number to APK
[INFO]:    # APK renamed to myapp-0.1-debug.apk
[DEBUG]:   -> running cp /home/daniel/Descargas/apk/.buildozer/android/platform/build/dists/myapp/build/outputs/apk/debug/myapp-debug.apk myapp-0.1-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 myapp-0.1-debug.apk available in the bin directory


@DACH1 DACH1 changed the title My application does not open in android but if it works in geany My application does not open in android but if it works in geany, help please. May 20, 2019
@inclement
Copy link
Member

Please follow the Kivy instructions to debug why the APK crashes.

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

3 participants
@inclement @DACH1 and others