cyberbudy
cyberbudy

Reputation: 752

PyQt on Android

I'm working on PyQt now, and I have to create the application on Android, I've seen the kivy library, but it's too crude.

Is there any way now to run an application on Android made on PyQt?

Upvotes: 48

Views: 78324

Answers (2)

Wedava
Wedava

Reputation: 1231

Android does not support PyQt4. However PyQt5 supported (see this). However, you could port your application to use PySide. It provides bindings for the Qt4 platform. You can then use pyside-android.

Upvotes: 17

user9903
user9903

Reputation:

With the tool pyqtdeploy you can deploy a PyQt5 app to:

  • Windows
  • GNU/Linux
  • Mac OS X
  • Android
  • iOS

Click here to see pyqtdeploy's documentation. It is a GUI tool that will package your PyQt5 application and compile it for the target platform.

pyqtdeploy gui

It lets you select various Qt modules to include in the compilation:

pyqtdeploy modules

On the command-line you would use the pyqtdeploy-build command like this:

pyqtdeploy-build pyqt-demo.pdy

Back in June 2016, there was a mailing list message that indicated that pyqtdeploy works. It's 2018 as I'm writing this so I assume pyqtdeploy has matured; the latest package version is 2.0.1 which was released on 5 January 2018.

Upvotes: 43

Related Questions