Пишу игрушку на python с kivy, чтобы убивать время иногда, все было нормально, но сейчас после buildozer init и buildozer -v android debug, выдает ошибку (начало ошибки связано с requirements). Все перепробовал - не помогло.
Вот сомнительная, по моему мнению, часть кода из buildozer.spec, сомнительная потому что именно тут я игрался со всем (Заранее извиняюсь за названия и версию):
[app]
# (str) Title of your application
title = FIC App
# (str) Package name
package.name = ficapp
# (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,db,mp3,ttfs,json
# (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, venv
# (list) List of exclusions using pattern matching
# Do not prefix with './'
#source.exclude_patterns = license,images/*/*.jpg
# (str) Application versioning (method 1)
version = 14.8.8
# (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,pygame,PyMySQL,sqlite3
# (str) Custom source folders for requirements
# Sets custom source for any requirements with recipes
# requirements.source.kivy = ../../kivy
# (str) Presplash of the application
presplash.filename = %(source.dir)s/data/FIC Logo.jpg
# (str) Icon of the application
icon.filename = %(source.dir)s/data/FIC Logo.jpg
# (list) Supported orientations
# Valid options are: landscape, portrait, portrait-reverse or landscape-reverse
orientation = portrait
# (list) List of service to declare
#services = NAME:ENTRYPOINT_TO_PY,NAME2:ENTRYPOINT2_TO_PY
#
# OSX Specific
#
#
author = © B4R3BUH
# change the major version of python used by the app
osx.python_version = 3
# Kivy version to use
osx.kivy_version = 2.3.0
#buildozer --profile demo android debug