Can I use Cython to compile an existing Python application for use on Android?
I have a Python 3 application with an extensive data model written in Python 3. I would like to have the data model somehow interacted with on Android, even if I have to write a thin "connecting" interface in between the two languages.
I'm thinking of using the Android NDK (C++ API) to call into the Python3 objects compiled via Cython, and rewrite the view in Kotlin/Java. I presume I'd have to embed Python into the Android device too.
Is this feasible? What would this path look like? Who (or what app) has done this?