We can run our application with version 3.9.2?
I try do this, but app don't start on android...
I change(add) in buildozer.spec:
requirements = python3==3.9.2,hostpython3==3.9.2,.....(and another things)
buildozer android debug deploy run
app compile and send on my phone, but do not run, this log:
```
03-30 17:55:00.790 10489 10520 I python : [INFO ] [Logger ] Record log in /data/user/0/org.test.myapp/files/app/.kivy/logs/kivy_21-03-30_4.txt
03-30 17:55:00.790 10489 10520 I python : [INFO ] [Kivy ] v2.0.0
03-30 17:55:00.790 10489 10520 I python : [INFO ] [Kivy ] Installed at "/data/user/0/org.test.myapp/files/app/_python_bundle/site-packages/kivy/__init__.pyc"
03-30 17:55:00.790 10489 10520 I python : [INFO ] [Python ] v3.9.2 (default, Mar 30 2021, 17:25:08)
03-30 17:55:00.790 10489 10520 I python : [INFO ] [Python ] Interpreter at ""
03-30 17:55:00.803 10489 10520 I python : [ERROR ] [Clock ] Unable to import kivy._clock. Have you perhaps forgotten to compile kivy? Kivy contains Cython code which needs to be compiled. A missing kivy._clock often indicates the Cython code has not been compiled. Please follow the installation instructions and make sure to compile Kivy
03-30 17:55:00.803 10489 10520 I python : Traceback (most recent call last):
03-30 17:55:00.803 10489 10520 I python : File "/home/sk2000/PycharmProjects/zweryfikowac/.buildozer/android/app/main.py", line 1, in <module>
03-30 17:55:00.803 10489 10520 I python : File "/home/sk2000/PycharmProjects/zweryfikowac/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/kivy/core/window/__init__.py", line 17, in <module>
03-30 17:55:00.803 10489 10520 I python : File "/home/sk2000/PycharmProjects/zweryfikowac/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/kivy/clock.py", line 466, in <module>
03-30 17:55:00.804 10489 10520 I python : ModuleNotFoundError: No module named 'kivy._clock'
03-30 17:55:00.804 10489 10520 I python : Python for android ended.
```
I think problem is:
I python : [ERROR ] [Clock ] Unable to import kivy._clock. Have you perhaps forgotten to compile kivy? Kivy contains Cython code which needs to be compiled. A missing kivy._clock often indicates the Cython code has not been compiled. Please follow the installation instructions and make sure to compile Kivy
But with python 3.8.5 it works without this error.
with without this:
python3==3.9.2,hostpython3==3.9.2
And in log from my phone i have patch from computer "/home/sk2000/Pyc....."
but without
python3==3.9.2,hostpython3==3.9.2
What i do wrong?