I'm trying to create a apk file of a python application via buildozer. But the apk does not run on android. I decided to run the primitive "Hello world" code, but the apk file does not open either. Please help me solve the problem
-python version 3.9
-The operating system is windows 10, but the creation of the apk file takes place on a virtual machine in linux
I looked for a solution to a similar problem on the Internet, but it did not help me. Pycharm does not give errors, the apk file is compiled
I am attaching the "Hello world" code(111.py) and the text of the buildozer.spec file (in .txt)
The code:
111.py (Size: 244 bytes / Downloads: 275)
-python version 3.9
-The operating system is windows 10, but the creation of the apk file takes place on a virtual machine in linux
I looked for a solution to a similar problem on the Internet, but it did not help me. Pycharm does not give errors, the apk file is compiled
I am attaching the "Hello world" code(111.py) and the text of the buildozer.spec file (in .txt)
The code:
import kivy from kivy import * from kivy.app import App from kivy.uix.label import Label class Main(App): def build(self): return Label(text='Hello World') if __name__ == '__main__': main1=Main() main1.run()I will be very grateful for your help!
Attached Files