用python写Android应用 安装kivy模块 python代码 可能的错误 解决办法 编译打包为APK文件 buildozer win10系统下 ubuntu子系统下 python-for-android(p4a) kivy编译官方教程[https://kivy.org/doc/stable/guide/packaging-android.html](https://kivy.org/doc/stable/guide/packaging-android.html) 安装kivy模块 pip install kivy pip install Cython python代码 from kivy.app import App from kivy.uix.button import Button class helloworld(App): def build(self): return Button(text='hello world') helloworld().run()