Dup Ver Goto 📝

AndroidInPython

PT2/lang/python/old-notes does not exist
To
19 lines, 54 words, 589 chars Page 'AndroidInPython' does not exist.

at towarddatascience.com

Basically, use Kivy. There is a udemy course that started me off with Kivy.

First Steps


from kivy.app import App
from kivy.uix.label import Label


class Main(App):
    def build(self):
        return Label(text='Hello World')


Main().run()

I've never actually done any of this, and likely won't. Android development isn't on my near-future todo-list.