PySide for Android guide: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
(Decode HTML entity numbers)
(Formatting)
Line 1: Line 1:
{{Cleanup | reason=Auto-imported from ExpressionEngine.}}
 


[[Category:LanguageBindings::PySide]]
[[Category:LanguageBindings::PySide]]
Line 5: Line 5:
= PySide for Android =
= PySide for Android =


[toc align_right="yes" depth="3"]


This guide describes:
This guide describes:
Line 21: Line 20:
=== Prerequisites ===
=== Prerequisites ===


==== Necessitas SDK
==== Necessitas SDK ====
Make sure to get the latest Necessitas alpha 4 SDK - older version might not work correctly with the build script (incompatible libraries, different paths, etc.). ====
Make sure to get the latest Necessitas alpha 4 SDK - older version might not work correctly with the build script (incompatible libraries, different paths, etc.).  


Download & run the Necessitas SDK installer
Download & run the Necessitas SDK installer
Line 36: Line 35:


* to make sure you have the Android SDK platform/API 14 installed in the Necessitas SDK (can be done after SDK installation):
* to make sure you have the Android SDK platform/API 14 installed in the Necessitas SDK (can be done after SDK installation):
- run <code>SDKMaintenanceTool</code> select ''Package manager'' and in '''Miscantelous->Android SDK''' check if you have '''API 14''' installed
- run SDKMaintenanceTool select ''Package manager'' and in '''Miscantelous->Android SDK''' check if you have '''API 14''' installed
- PySide should probably compile even against a lower API, but that has not been tested yet
- PySide should probably compile even against a lower API, but that has not been tested yet


Line 85: Line 84:


==== arm-linux-androideabi-g: Internal error: Killed (program cc1plus) ====
==== arm-linux-androideabi-g: Internal error: Killed (program cc1plus) ====
This error seems to be caused by low system resources during build and/or running the compilation in multiple threads on some machines. If you are experiencing this error, try to set <code>BUILD_THREAD_COUNT</code> in <code>env.sh</code> to 1.
This error seems to be caused by low system resources during build and/or running the compilation in multiple threads on some machines. If you are experiencing this error, try to set BUILD_THREAD_COUNT in env.sh to 1.


=== Results ===
=== Results ===
Line 96: Line 95:
This is an example, that demonstrates a fully functional standalone Android application that uses Python, PySide and Qt Components.
This is an example, that demonstrates a fully functional standalone Android application that uses Python, PySide and Qt Components.


[[Image:{width: 25%; height: 25%;}http://modrana.org/images/android/example/example_landscape.png|example application in ladscape]] [[Image:{width: 14%; height: 14%;}http://modrana.org/images/android/example/example_portrait_kbtest.png|example application in portrait]] [[Image:{width: 14%; height: 14%;}http://modrana.org/images/android/example/example_portrait_tools.png|example application showing the tools menu]]
<gallery>
 
File:Expyside1.png|example application in ladscape
File:Expyside2.png|example application in portrait
File:Expyside3.png|example application showing the tools menu
</gallery>
[http://modrana.org/trac/wiki/ScreenshotsEN#PySideQtComponentsexample more screenshots]
[http://modrana.org/trac/wiki/ScreenshotsEN#PySideQtComponentsexample more screenshots]


Line 116: Line 118:


==== What the example application demonstrates ====
==== What the example application demonstrates ====
* sending data to Python and back
* sending data to Python and back * the content of the entry field is sent to Python, where it is painted on the PySide image and returned to QML using ImageProvider * the date is retrieved in Python and shown in QML
* the content of the entry field is sent to Python, where it is painted on the PySide image and returned to QML using ImageProvider
* the date is retrieved in Python and shown in QML
* working text entry with the Android virtual keyboard
* working text entry with the Android virtual keyboard
* working screen rotation
* working screen rotation
* correct Portrait/Landscape orientation switching
* correct Portrait/Landscape orientation switching * in both normal & inverted orientations
* in both normal & inverted orientations
* working notifications (InfoBanner)
* working notifications (InfoBanner)
* working ToolBar
* working ToolBar
Line 169: Line 168:
The project contains various components, that together enable the creation of fully standalone Python & PySide application APK, while also allowing to bundle any arbitrary libraries and files needed by the application.
The project contains various components, that together enable the creation of fully standalone Python & PySide application APK, while also allowing to bundle any arbitrary libraries and files needed by the application.


The example project is called <code>PySideExample</code> and uses the <code>org.modrana.PySideExample</code> unique name. This means, that when it's APK is installed on and Android device, it gets installed to this directory:
The example project is called PySideExample and uses the org.modrana.PySideExample unique name. This means, that when it's APK is installed on and Android device, it gets installed to this directory:
<code>
<code>
/data/data/org.modrana.PySide.Example/
/data/data/org.modrana.PySide.Example/
Line 176: Line 175:


==== C''+ wrapper ====
==== C''+ wrapper ====
The <code>main.cpp</code> and <code>main.h</code> files are used to build a C++ Python wrapper. This wrapper is build against the the Android-compiled python libraries in <code>build_dependencies/python</code> by Necessitas.
The main.cpp and main.h files are used to build a C++ Python wrapper. This wrapper is build against the the Android-compiled python libraries in build_dependencies/python by Necessitas.


Once the APK is deployd to the device and started, this wrapper is run. It initializes it's build-in Python interpreter, which tries to start the <code>/data/data/org.modrana.PySide.Example/files/main.py</code> Python file. This Python code then imports PySide, instantiates a QApplication and starts the main loop.
Once the APK is deployd to the device and started, this wrapper is run. It initializes it's build-in Python interpreter, which tries to start the /data/data/org.modrana.PySide.Example/files/main.py Python file. This Python code then imports PySide, instantiates a QApplication and starts the main loop.


Behind the scenes, Necessitas handles wrapping the QApplication to an Android activity and showing it on the screen. It also handles other stuff like keyboard input & Qt Mobility.
Behind the scenes, Necessitas handles wrapping the QApplication to an Android activity and showing it on the screen. It also handles other stuff like keyboard input & Qt Mobility.
Line 194: Line 193:
#define PYTHON_HOME "/data/data/org.modrana.PySideExample/files/python/"
#define PYTHON_HOME "/data/data/org.modrana.PySideExample/files/python/"


#define PYTHON_PATH "/data/data/org.modrana.PySideExample/files/python/lib/python2.7/lib-dynload:/data/data/org.modrana.PySideExample/files/python/lib/python2.7/:/data/data/org.modrana.PySideExample/files/python/lib/python2.7/site-packages:/data/data/org.modrana.PySideExample/files/python/lib"
#define PYTHON_PATH "/data/data/org.modrana.PySideExample/files/python/lib/python2.7/lib-
dynload:/data/data/org.modrana.PySideExample/files/python/lib/python2.7/:/data/data/org.modrana.
PySideExample/files/python/lib/python2.7/site-
packages:/data/data/org.modrana.PySideExample/files/python/lib"


#define LD_LIBRARY_PATH "/data/data/org.modrana.PySideExample/files/python/lib:/data/data/org.modrana.PySideExample/files/python/lib/python2.7/lib-dynload:/data/data/org.kde.necessitas.ministro/files/qt/lib/"
#define LD_LIBRARY_PATH "/data/data/org.modrana.PySideExample/files/python/lib:/data
/data/org.modrana.PySideExample/files/python/lib/python2.7/lib-
dynload:/data/data/org.kde.necessitas.ministro/files/qt/lib/"


#define PATH "/data/data/org.modrana.PySideExample/files/python/bin:$PATH"
#define PATH "/data/data/org.modrana.PySideExample/files/python/bin:$PATH"
Line 209: Line 213:
</code>
</code>


* <code>MAIN_PYTHON_FILE</code> - path to the main Python file to run once the application is started
* MAIN_PYTHON_FILE - path to the main Python file to run once the application is started
* <code>PYTHON_HOME</code>
* PYTHON_HOME
* <code>LD_LIBRARY_PATH</code> - '':'' separated list of paths used to look for libraries when loading them
* LD_LIBRARY_PATH - '':'' separated list of paths used to look for libraries when loading them
* <code>PATH</code> - search path for executables
* PATH - search path for executables
* <code>THEME_PATH</code> - path to the main themes folder for Qt Components
* THEME_PATH - path to the main themes folder for Qt Components
* <code>QML_IMPORT_PATH</code> - path to the Qt Components <code>imports</code> folder
* QML_IMPORT_PATH - path to the Qt Components imports folder


===== main.cpp =====
===== main.cpp =====


This is the C++ wrapper, it contains the embedded Python interpreter that is used to start the application and also sets some important environmental variables specified through <code>main.h</code> .
This is the C++ wrapper, it contains the embedded Python interpreter that is used to start the application and also sets some important environmental variables specified through main.h .


==== The example Python application ====
==== The example Python application ====


The example in <code>main.py</code> inside <code>my_python_project.zip</code> is basically a normal PySide application, it imports PySide, instantiates QApplication and starts the main loop. There is only one main difference in this piece of code:
The example in main.py inside my_python_project.zip is basically a normal PySide application, it imports PySide, instantiates QApplication and starts the main loop. There is only one main difference in this piece of code:


<code>
<code>
Line 233: Line 237:
</code>
</code>


Due to some not yet identified bug, unless <code>libshiboken.so</code> & <code>libpyside.so</code> are manually loaded to memory like this, importing any PySide module fails.
Due to some not yet identified bug, unless libshiboken.so & libpyside.so are manually loaded to memory like this, importing any PySide module fails.


'''So make sure this piece of code is somewhere in your application and is executed before import of any PySide module takes place.'''
'''So make sure this piece of code is somewhere in your application and is executed before import of any PySide module takes place.'''


Regarding the <code>PYSIDE_APPLICATION_FOLDER</code> environmental variable, it is set by the <code>main.cpp</code> wrapper and can be configured in <code>main.h</code> .
Regarding the PYSIDE_APPLICATION_FOLDER environmental variable, it is set by the main.cpp wrapper and can be configured in main.h .


==== Bundling ====
==== Bundling ====
Line 251: Line 255:
This way bundling of arbitrary files (libraries, executables, code, themes, etc.) inside the application APK has been achieved.
This way bundling of arbitrary files (libraries, executables, code, themes, etc.) inside the application APK has been achieved.


'''NOTE:''' Necessitas Qt Creator might sometimes want to update the pre-generated '''.java files with a new version. If this happens, check if the update didn't break or remove the bundling code in <code>QtActivity.java</code> .
'''NOTE:''' Necessitas Qt Creator might sometimes want to update the pre-generated '''.java files with a new version. If this happens, check if the update didn't break or remove the bundling code in QtActivity.java .


===== GlobalConstants.java =====
===== GlobalConstants.java =====
The file <code>android/src/org/kde/necessitas/origo/GlobalConstants.java</code> contains variables for the main <code>QtActivity</code> file.
The file android/src/org/kde/necessitas/origo/GlobalConstants.java contains variables for the main QtActivity file.


It looks like this:
It looks like this:
Line 282: Line 286:


===== my_python_project.zip =====
===== my_python_project.zip =====
The first archive, located in <code>android/res/raw/my_python_project.zip</code> in the project contains the Python application code. On first application start, it's contents are unpacked into:
The first archive, located in android/res/raw/my_python_project.zip in the project contains the Python application code. On first application start, it's contents are unpacked into:


<code>/data/data/org.modrana.PySide.Example/files/</code>
/data/data/org.modrana.PySide.Example/files/


===== python27.zip =====
===== python27.zip =====
This file is located <code>android/res/raw/python_27.zip</code> in the project and it's content is unpacked to:


<code>/data/data/org.modrana.PySide.Example/files/python</code>
This file is located android/res/raw/python_27.zip in the project and it's content is unpacked to:
 
/data/data/org.modrana.PySide.Example/files/python


The paths set in <code>main.h</code> expect this and point the corresponding environmental variables to the <code>bin</code>, <code>lib</code>, <code>imports</code> and <code>themes</code> folders in this directory.
The paths set in main.h expect this and point the corresponding environmental variables to the bin, lib, imports and themes folders in this directory.


=== Modifying the project ===
=== Modifying the project ===
Line 302: Line 307:
There are actually two names - the project/application name and the unique application name.
There are actually two names - the project/application name and the unique application name.


For the example project, they project name is <code>PySideExample</code> and the unique name is <code>org.modrana.PySideExample</code>. As you can see, the project name is also a suffix for the unique name. (You probably can use a project name that differs from the suffix, but I rather make them the same to avoid needless confusion).
For the example project, they project name is PySideExample and the unique name is org.modrana.PySideExample. As you can see, the project name is also a suffix for the unique name. (You probably can use a project name that differs from the suffix, but I rather make them the same to avoid needless confusion).


The unique name is very important:
The unique name is very important:
''' it has to be unique so it dosn't clash with other applications
* it has to be unique so it dosn't clash with other applications * for this reason, it is mostly based on a domain name you control or some other string with low possibility of being used by another developer
* for this reason, it is mostly based on a domain name you control or some other string with low possibility of being used by another developer
* the unique name is used for path to the installation folder * the example project uses the org.modrana.PySideExample and it is installed into /data/data/org.modrana.PySideExample as a result * the path to the installation folder is used when setting important environmental variables, so make sure to change all the corresponding paths when changing the unique name
* the unique name is used for path to the installation folder
* the example project uses the <code>org.modrana.PySideExample</code> and it is installed into <code>/data/data/org.modrana.PySideExample</code> as a result
* the path to the installation folder is used when setting important environmental variables, so make sure to change all the corresponding paths when changing the unique name


===== Project rename script =====
===== Project rename script =====
Line 327: Line 329:
sed -i "s/PySideExample/${NEW_NAME}/g" android/build.xml
sed -i "s/PySideExample/${NEW_NAME}/g" android/build.xml
</code>
</code>
Just change <code>NEW_NAME</code> and <code>NEW_UNIQUE_NAME</code> to values matching you application and you are set. :)
Just change NEW_NAME and NEW_UNIQUE_NAME to values matching you application and you are set. :)


===== What the rename script does =====
===== What the rename script does =====


Lets say we want to rename the example project from <code>PySideExample</code> to <code>BarApp</code> and from <code>org.modrana.PySideExample</code> to <code>foo.foomatic.BarApp</code>
Lets say we want to rename the example project from PySideExample to BarApp and from org.modrana.PySideExample to foo.foomatic.BarApp


* rename the project file:
* rename the project file:
Line 343: Line 345:
</code>
</code>


* replace all unique names in <code>main.h</code>:
* replace all unique names in main.h:
<code>
<code>
sed -i "s/org.modrana.PySideExample/foo.foomatic.BarApp/g" main.h
sed -i "s/org.modrana.PySideExample/foo.foomatic.BarApp/g" main.h
</code>
</code>


* replace all unique names in the <code>QtActivity</code>:
* replace all unique names in the QtActivity:
<code>
<code>
sed -i "s/org.modrana.PySideExample/foo.foomatic.BarApp/g" android/src/org/kde/necessitas/origo/QtActivity.java
sed -i "s/org.modrana.PySideExample/foo.foomatic.BarApp/g" android/src/org/kde/necessitas/origo/QtActivity.java
Line 359: Line 361:
</code>
</code>


* and the last is in the <code>android/res/strings.xml</code> and <code>android/build.xml</code> file:
* and the last is in the android/res/strings.xml and android/build.xml file:
<code>
<code>
sed -i "s/PySideExample/BarApp/g" android/res/values/strings.xml
sed -i "s/PySideExample/BarApp/g" android/res/values/strings.xml
Line 374: Line 376:


==== Replacing the application ====
==== Replacing the application ====
The application is located in: <code>android/res/raw/my_python_project.zip</code>
The application is located in: android/res/raw/my_python_project.zip


This file is decompressed into the <code>/data/data/org.modrana.PySide.Example/files/</code> folder on first start after installation. Then <code>/data/data/org.modrana.PySide.Example/files/main.py</code> is run by Python.
This file is decompressed into the /data/data/org.modrana.PySide.Example/files/ folder on first start after installation. Then /data/data/org.modrana.PySide.Example/files/main.py is run by Python.


To replace the example application, just replace the contents of <code>my_python_project.zip</code>, if you want to start other file than <code>main.py</code>, just change the ''MAIN_PYTHON_FILE'' path in <code>main.h</code> .
To replace the example application, just replace the contents of my_python_project.zip, if you want to start other file than main.py, just change the ''MAIN_PYTHON_FILE'' path in main.h .


==== Replacing Python ====
==== Replacing Python ====
The project contains two Python "bundles", one is used to compile the application wrapper and is located in <code>build_dependencies/python</code>, the other one is in <code>android/res/raw/python_27.zip</code> and is deployed on first start after installation into <code>/data/data/org.modrana.PySide.Example/files/python</code> with all other bundled libraries and files in this archive.
The project contains two Python "bundles", one is used to compile the application wrapper and is located in build_dependencies/python, the other one is in android/res/raw/python_27.zip and is deployed on first start after installation into /data/data/org.modrana.PySide.Example/files/python with all other bundled libraries and files in this archive.


When replacing Python, you should probably replace both bundles with the same Android-compiled Python version, or at least use the same series (2.7 & 2.7 not 2.7 & 2.6).
When replacing Python, you should probably replace both bundles with the same Android-compiled Python version, or at least use the same series (2.7 & 2.7 not 2.7 & 2.6).


==== Replacing PySide libraries ====
==== Replacing PySide libraries ====
The PySide libraries are located in <code>android/res/raw/python_27.zip</code> archive inside the ''lib'' folder. This folder is deployed to <code>/data/data/org.modrana.PySide.Example/files/python/lib</code> on the Android device.
The PySide libraries are located in android/res/raw/python_27.zip archive inside the ''lib'' folder. This folder is deployed to /data/data/org.modrana.PySide.Example/files/python/lib on the Android device.


When replacing PySide, you need to replace the libshiboken and libpyside:
When replacing PySide, you need to replace the libshiboken and libpyside:
Line 396: Line 398:


==== Replacing Qt Components ====
==== Replacing Qt Components ====
The Qt Components are packed in the <code>android/res/raw/python_27.zip</code> in the <code>imports</code> directory, the theme is in <code>themes</code>. These to folders are deployed like this after installation:
The Qt Components are packed in the android/res/raw/python_27.zip in the imports directory, the theme is in themes. These to folders are deployed like this after installation:
<code>
<code>
/data/org.modrana.PySide.Example/python/imports
/data/org.modrana.PySide.Example/python/imports
Line 402: Line 404:
</code>
</code>


So to replace Qt Components and/or their theme, just replace the content of the ''imports'' and/or ''themes'' folders in the <code>python_27.zip</code> archives.
So to replace Qt Components and/or their theme, just replace the content of the ''imports'' and/or ''themes'' folders in the python_27.zip archives.


==== Adding files, libraries & executables ====
==== Adding files, libraries & executables ====
===== Files =====
===== Files =====
Arbitrary files needed by you application should probably go to the <code>my_python_project.zip</code>, to be deployed together with your application to the main instalation folder.
Arbitrary files needed by you application should probably go to the my_python_project.zip, to be deployed together with your application to the main instalation folder.


===== Libraries & executables =====
===== Libraries & executables =====
Libraries should be added to <code>python_27.zip</code> to the <code>lib</code> folder, exectuables to the <code>bin</code> folder. Like this they will be deployed to a folder that is listed in <code>$LD_LIBRARY_PATH</code> and <code>$PATH</code> respectively.
Libraries should be added to python_27.zip to the lib> folder, exectuables to the bin folder. Like this they will be deployed to a folder that is listed in $LD_LIBRARY_PATH and $PATH respectively.


'''NOTE:''' I haven't yet tested if running executables through ''subprocess'' actually works.
'''NOTE:''' I haven't yet tested if running executables through ''subprocess'' actually works.
Line 418: Line 420:
* building APKs from command line only without Qt Creator
* building APKs from command line only without Qt Creator
* show a progress bar when the bundled libs are unpacked on first start
* show a progress bar when the bundled libs are unpacked on first start
* modified bundling that doesn't unpack the files during startup bud during installation
* modified bundling that doesn't unpack the files during startup bud during installation * this could speed up the first start quite a bit
* this could speed up the first start quite a bit
* compiling the many Qt Components files & images to a single resource file ?
* compiling the many Qt Components files & images to a single resource file ?
* documenting how to use Android specific APIs from Python
* documenting how to use Android specific APIs from Python
Line 474: Line 475:
* [http://code.google.com/p/android-python27/ The Android-Python2.7 project] - solved the APK bundling issue, provides Android-buildable Python 2.7
* [http://code.google.com/p/android-python27/ The Android-Python2.7 project] - solved the APK bundling issue, provides Android-buildable Python 2.7
* [http://hg.microcode.ca/blackberry-py/wiki/Building the BlackBerry-Py Building PySide guide] PySide - I've used this as a base when making the Android build scripts
* [http://hg.microcode.ca/blackberry-py/wiki/Building the BlackBerry-Py Building PySide guide] PySide - I've used this as a base when making the Android build scripts
* [http://necessitas.kde.org/ the Necessitas project] - made Qt on Android possible
* [http://necessitas.kde.org/ the Necessitas project] - made Qt on Android possible * also provides the Necessitas Qt Creator used for by the example project for building standalone APKs
* also provides the Necessitas Qt Creator used for by the example project for building standalone APKs
* [http://qt.io/ Qt-Project] - provides the GUI toolkit :)
* [http://qt.io/ Qt-Project] - provides the GUI toolkit :)
* [http://wiki.qt.io/PySide PySide] - provides the Python-Qt bindings
* [http://wiki.qt.io/PySide PySide] - provides the Python-Qt bindings
* [https://gitorious.org/~inean/qt-components/ineans-qt-components Ineans Qt Components] - with small modifications used in the example application & project
* [https://gitorious.org/~inean/qt-components/ineans-qt-components Ineans Qt Components] - with small modifications used in the example application & project

Revision as of 12:06, 26 March 2015


PySide for Android

This guide describes:

  • how to build Shiboken & PySide for Android using the Necessitas SDK
  • how to use the resulting libraries
  • and how to bundle them with your Python program in a standalone APK

NOTE: If you just want to run you Python & PySide programs on Android, you can skip the Building PySide section and go directly to PySide for Android example application & Example project for the Necessitas Qt Creator .

See Links for source code & pre-built binaries.

Building PySide

Prerequisites

Necessitas SDK

Make sure to get the latest Necessitas alpha 4 SDK - older version might not work correctly with the build script (incompatible libraries, different paths, etc.).

Download & run the Necessitas SDK installer

wget http://files.kde.org/necessitas/installer/release/linux-online-necessitas-alpha4-sdk-installer
chmod ''x linux-online-necessitas-alpha4-sdk-installer
./linux-online-necessitas-alpha4-sdk-installer

Once the installer starts -> don't forget to install Android API 14 [[Image:|Image:]]*

  • on the Select components page go to * Miscellaneous->Android SDK and select API 14 for installation
  • to make sure you have the Android SDK platform/API 14 installed in the Necessitas SDK (can be done after SDK installation):

- run SDKMaintenanceTool select Package manager and in Miscantelous->Android SDK check if you have API 14 installed - PySide should probably compile even against a lower API, but that has not been tested yet

Other prerequisites

  • system-wide installed Shiboken
  • system-wide installed Python 2.7
  • Python 2.7 compiled for Android
  • cmake
  • git

This command should probably fetch most of the prerequisites on Ubuntu:

sudo apt-get install build-essential cmake git python2.7-minimal shiboken

If you find some are is missing or if you wan't to provide similar command for other distributions, add them ! :)

Then clone the Android-pyside-build-scripts project and cd to it's directory:

git clone https://github.com/M4rtinK/android-pyside-build-scripts.git
cd android-pyside-build-scripts

Now run the prepare.sh script:

./prepare.sh

It clones Android-modified Shiboken & PySide and creates some folders needed for the build.

And that's it, you are ready to start the build. :)

Build

To start the build, just run the main build script, called build.sh:

./build.sh

It first builds Shiboken, followed by PySide. The script is fully automatic, but waits for the user to press any key:

  • after Shiboken is configured for build
  • after PySide is configured for build

Like this you can easily check for any errors during configuration.

Also note, that when running the script, it clears any previous build results before building.

You can also run the build_shiboken.sh and build_pyside.sh scripts manually, just always make sure to run the Shiboken one before running the PySide one.

Build issues

If you have any issues during the PySide build, the first thing you should do is to check the PySide for Android build scripts repository if it was not updated since you cloned it, as it might already contain a fix for you issue.

arm-linux-androideabi-g: Internal error: Killed (program cc1plus)

This error seems to be caused by low system resources during build and/or running the compilation in multiple threads on some machines. If you are experiencing this error, try to set BUILD_THREAD_COUNT in env.sh to 1.

Results

The resulting PySide libraries compiled for Android are located in the stage/lib folder.

See the Example project for the Necessitas Qt Creator, Modifying the project, section Replacing PySide libraries for how the PySide libraries can be used as a part of a self-contained Android application.


PySide for Android example application

This is an example, that demonstrates a fully functional standalone Android application that uses Python, PySide and Qt Components.

more screenshots

Ready-to-install APK

A ready-to-install standalone APK is available here:

http://modrana.org/platforms/android/pyside_example/PySideExample_1.2.apk

Just install it and press the PySideExample icon.

First start

If you haven't yet installed any Ministro using Qt application on your Android device, you will be redirected to the Play store to install the Ministro application. Ministro is a manager & updater for the Qt libraries for Android. The example application requires to be installed to run. So just install Ministro and everything else will be handled automatically. You might need to press the PySideExample icon again once Ministro is installed.

Once Ministro is installed and does it's work, the example might still take some time to start, as it is unpacking Python, Qt Components, theme for Qt Components and the example program to it's working directory. Once the unpacking is finished, the example application will be started.

The unpacking is done only once on the first application start, following starts are very fast, at least when tested on my device (HP Touchpad with CM9).

What the example application demonstrates

  • sending data to Python and back * the content of the entry field is sent to Python, where it is painted on the PySide image and returned to QML using ImageProvider * the date is retrieved in Python and shown in QML
  • working text entry with the Android virtual keyboard
  • working screen rotation
  • correct Portrait/Landscape orientation switching * in both normal & inverted orientations
  • working notifications (InfoBanner)
  • working ToolBar
  • working Menu
  • "tools" menu with rotation & opacity sliders for the PySide image

Source code

Available from Github under BSD licence: https://github.com/M4rtinK/expyside/tree/android

Size of the APK

The example APK has about 16 MB. This is because it needs to bundle quite a lot of libraries and related files. Big part of it is actually not used by the example in any way.

For normal applications it should be possible to make the resulting APK much smaller by:

  • including only the PySide libraries that are actually used
  • removing unused Python modules
  • cutting down the Qt Components theme from all graphics & icons that are not used

Example project for the Necessitas Qt Creator

This project has been used to generate the above mentioned application example APK.

Using the project

Using the project to build your own project is very easy. Just install the Necessitas SDK and clone the example project from git:

git clone https://github.com/M4rtinK/android-pyside-example-project.git

Then just open the PySideExample.pro with the Necessitas Qt Creator.

To generate a new APK, just click the green run arrow in the lower left - Qt Creator should rebuild the the APK and deploy it either to the simulator or to any connected Android device that has debugging enabled.

Build & deployment issues

The example fails to start when deployed to device

First check you have the latest clone of the project.

Then check for which ARM architecture are you building by clicking on Projects. The available architecture targets are:

  • Necessitas Qt 4.8.2 for Android armv5
  • Necessitas Qt 4.8.2 for Android armv7a

The currently used architecture dark, the unused is white-grey. The build architecture needs to correspond to what the CPU of your device is using. If not sure, just try both and stick with the one that works. :)

Cannot find ELF information

This error is harmless and can be safely ignored.

How does it work ?

The project contains various components, that together enable the creation of fully standalone Python & PySide application APK, while also allowing to bundle any arbitrary libraries and files needed by the application.

The example project is called PySideExample and uses the org.modrana.PySideExample unique name. This means, that when it's APK is installed on and Android device, it gets installed to this directory:

/data/data/org.modrana.PySide.Example/

This path is important, as the application needs to set a couple of environmental variables during startup, pointing to libraries and themes that reside in this directory.

C+ wrapper

The main.cpp and main.h files are used to build a C++ Python wrapper. This wrapper is build against the the Android-compiled python libraries in build_dependencies/python by Necessitas.

Once the APK is deployd to the device and started, this wrapper is run. It initializes it's build-in Python interpreter, which tries to start the /data/data/org.modrana.PySide.Example/files/main.py Python file. This Python code then imports PySide, instantiates a QApplication and starts the main loop.

Behind the scenes, Necessitas handles wrapping the QApplication to an Android activity and showing it on the screen. It also handles other stuff like keyboard input & Qt Mobility.

main.h

This file contains important paths for the C++ wrapper.

#ifndef MAIN_H
#define MAIN_H

#define MAIN_PYTHON_FILE "/data/data/org.modrana.PySideExample/files/main.py"

#define PYTHON_HOME "/data/data/org.modrana.PySideExample/files/python/"

#define PYTHON_PATH "/data/data/org.modrana.PySideExample/files/python/lib/python2.7/lib-
dynload:/data/data/org.modrana.PySideExample/files/python/lib/python2.7/:/data/data/org.modrana.
PySideExample/files/python/lib/python2.7/site-
packages:/data/data/org.modrana.PySideExample/files/python/lib"

#define LD_LIBRARY_PATH "/data/data/org.modrana.PySideExample/files/python/lib:/data
/data/org.modrana.PySideExample/files/python/lib/python2.7/lib-
dynload:/data/data/org.kde.necessitas.ministro/files/qt/lib/"

#define PATH "/data/data/org.modrana.PySideExample/files/python/bin:$PATH"

#define THEME_PATH "/data/data/org.modrana.PySideExample/files/python/themes/"

#define QML_IMPORT_PATH "/data/data/org.modrana.PySideExample/files/python/imports/"

#define PYSIDE_APPLICATION_FOLDER "/data/data/org.modrana.PySideExample/"

#endif // MAIN_H
  • MAIN_PYTHON_FILE - path to the main Python file to run once the application is started
  • PYTHON_HOME
  • LD_LIBRARY_PATH - : separated list of paths used to look for libraries when loading them
  • PATH - search path for executables
  • THEME_PATH - path to the main themes folder for Qt Components
  • QML_IMPORT_PATH - path to the Qt Components imports folder
main.cpp

This is the C++ wrapper, it contains the embedded Python interpreter that is used to start the application and also sets some important environmental variables specified through main.h .

The example Python application

The example in main.py inside my_python_project.zip is basically a normal PySide application, it imports PySide, instantiates QApplication and starts the main loop. There is only one main difference in this piece of code:

from ctypes import *
PROJECT_FOLDER = os.environ['PYSIDE_APPLICATION_FOLDER']
# 'PYSIDE_APPLICATION_FOLDER' can be configured in main.h
LIB_DIR = os.path.join(PROJECT_FOLDER, 'files/python/lib')
SHIBOKEN_SO = os.path.join(LIB_DIR, 'libshiboken.so')
PYSIDE_SO = os.path.join(LIB_DIR, 'libpyside.so')

Due to some not yet identified bug, unless libshiboken.so & libpyside.so are manually loaded to memory like this, importing any PySide module fails.

So make sure this piece of code is somewhere in your application and is executed before import of any PySide module takes place.

Regarding the PYSIDE_APPLICATION_FOLDER environmental variable, it is set by the main.cpp wrapper and can be configured in main.h .

Bundling

The example project bundles all files needed by the application inside the standalone APK. This section describes how the bundling works.

Modified QtActivity.java

Another mportant file is the main Android activity located in

android/src/org/kde/necessitas/origo/QtActivity.java

This is actually the first thing that is started once you press the application icon on android. It basically works as a glue between Android, Qt and in our case, Python & PySide.

The basic activity file that is part of every Necessitas Qt Creator project has been modified by the android_python27 project, to look for two specific zip archives in the installation folder at startup ant to decompress them & then remover the archives.

This way bundling of arbitrary files (libraries, executables, code, themes, etc.) inside the application APK has been achieved.

NOTE: Necessitas Qt Creator might sometimes want to update the pre-generated .java files with a new version. If this happens, check if the update didn't break or remove the bundling code in QtActivity.java .

GlobalConstants.java

The file android/src/org/kde/necessitas/origo/GlobalConstants.java contains variables for the main QtActivity file.

It looks like this:

package org.kde.necessitas.origo;

public class GlobalConstants {

 public static final String PYTHON_MAIN_SCRIPT_NAME = "main.py";
 public static final String PYTHON_PROJECT_ZIP_NAME = "my_python_project.zip";
 public static final String PYTHON_ZIP_NAME = "python_27.zip";
 public static final String PYTHON_EXTRAS_ZIP_NAME = "python_extras_27.zip";

 public static final boolean IS_FOREGROUND_SERVICE = true;

 public static final String PYTHON_BIN_RELATIVE_PATH = "/python/bin/python";
 public static final String PYTHON_NAME = "python";
 public static final String PYTHON_NICE_NAME = "Python 2.7.2";

 public static String[] SCRIPT_ARGS = { "—foreground" };

 public static final String LOG_TAG = "PythonAPK";
}

As you can see, you can use it to set various variables, such as name of the bundling archives or logging prefix (does this actually work ?).

my_python_project.zip

The first archive, located in android/res/raw/my_python_project.zip in the project contains the Python application code. On first application start, it's contents are unpacked into:

/data/data/org.modrana.PySide.Example/files/

python27.zip

This file is located android/res/raw/python_27.zip in the project and it's content is unpacked to:

/data/data/org.modrana.PySide.Example/files/python

The paths set in main.h expect this and point the corresponding environmental variables to the bin, lib, imports and themes folders in this directory.

Modifying the project

When you want to use the example project as basis for your Python application for Android, you just need to rename it and replace the example application.

But just in case I've also documented replacing all the other components.

Renaming

Names

There are actually two names - the project/application name and the unique application name.

For the example project, they project name is PySideExample and the unique name is org.modrana.PySideExample. As you can see, the project name is also a suffix for the unique name. (You probably can use a project name that differs from the suffix, but I rather make them the same to avoid needless confusion).

The unique name is very important:

  • it has to be unique so it dosn't clash with other applications * for this reason, it is mostly based on a domain name you control or some other string with low possibility of being used by another developer
  • the unique name is used for path to the installation folder * the example project uses the org.modrana.PySideExample and it is installed into /data/data/org.modrana.PySideExample as a result * the path to the installation folder is used when setting important environmental variables, so make sure to change all the corresponding paths when changing the unique name
Project rename script

You can also run this combined script from the project directory, which should do all the needed renaming:

NEW_NAME="BarApp"
NEW_UNIQUE_NAME="foo.foomatic.${NEW_NAME}"

mv PySideExample.pro "${NEW_NAME}.pro"
sed -i "s/PySideExample/${NEW_NAME}/g" "${NEW_NAME}.pro"
sed -i "s/org.modrana.PySideExample/${NEW_UNIQUE_NAME}/g" main.h
sed -i "s/org.modrana.PySideExample/${NEW_UNIQUE_NAME}/g" android/src/org/kde/necessitas/origo/QtActivity.java
sed -i "s/org.modrana.PySideExample/${NEW_UNIQUE_NAME}/g" android/AndroidManifest.xml
sed -i "s/PySideExample/${NEW_NAME}/g" android/AndroidManifest.xml
sed -i "s/PySideExample/${NEW_NAME}/g" android/res/values/strings.xml
sed -i "s/PySideExample/${NEW_NAME}/g" android/build.xml

Just change NEW_NAME and NEW_UNIQUE_NAME to values matching you application and you are set. :)

What the rename script does

Lets say we want to rename the example project from PySideExample to BarApp and from org.modrana.PySideExample to foo.foomatic.BarApp

  • rename the project file:
mv PySideExample.pro BarApp.pro
  • replace the name inside the project file:
sed -i "s/PySideExample/BarApp/g" BarApp.pro
  • replace all unique names in main.h:
sed -i "s/org.modrana.PySideExample/foo.foomatic.BarApp/g" main.h
  • replace all unique names in the QtActivity:
sed -i "s/org.modrana.PySideExample/foo.foomatic.BarApp/g" android/src/org/kde/necessitas/origo/QtActivity.java
  • replace all names in the Android manifest file:
sed -i "s/org.modrana.PySideExample/foo.foomatic.BarApp/g" android/AndroidManifest.xml
sed -i "s/PySideExample/BarApp/g" android/AndroidManifest.xml
  • and the last is in the android/res/strings.xml and android/build.xml file:
sed -i "s/PySideExample/BarApp/g" android/res/values/strings.xml
sed -i "s/PySideExample/BarApp/g" android/build.xml

NOTE: Some of these names can be changed from the Necessitas Qt Creator GUI or of course also by using an editor.

To verify that you have really changed all of the original names or if there are still some left, you can use this command:

find . -type f -print0 | xargs 0 file | grep -P text | cut -d: -f1 | xargs grep "PySideExample"

Replacing the application

The application is located in: android/res/raw/my_python_project.zip

This file is decompressed into the /data/data/org.modrana.PySide.Example/files/ folder on first start after installation. Then /data/data/org.modrana.PySide.Example/files/main.py is run by Python.

To replace the example application, just replace the contents of my_python_project.zip, if you want to start other file than main.py, just change the MAIN_PYTHON_FILE path in main.h .

Replacing Python

The project contains two Python "bundles", one is used to compile the application wrapper and is located in build_dependencies/python, the other one is in android/res/raw/python_27.zip and is deployed on first start after installation into /data/data/org.modrana.PySide.Example/files/python with all other bundled libraries and files in this archive.

When replacing Python, you should probably replace both bundles with the same Android-compiled Python version, or at least use the same series (2.7 & 2.7 not 2.7 & 2.6).

Replacing PySide libraries

The PySide libraries are located in android/res/raw/python_27.zip archive inside the lib folder. This folder is deployed to /data/data/org.modrana.PySide.Example/files/python/lib on the Android device.

When replacing PySide, you need to replace the libshiboken and libpyside:

Replace lib/libshiboken.so by stage/lib/libshiboken.so
Replace lib/libpyside.so by stage/lib/libpyside.so
Replace lib/python2.7/site-packages/PySide by stage/lib/python2.7/site-packages/PySide

Replacing Qt Components

The Qt Components are packed in the android/res/raw/python_27.zip in the imports directory, the theme is in themes. These to folders are deployed like this after installation:

/data/org.modrana.PySide.Example/python/imports
/data/org.modrana.PySide.Example/python/themes

So to replace Qt Components and/or their theme, just replace the content of the imports and/or themes folders in the python_27.zip archives.

Adding files, libraries & executables

Files

Arbitrary files needed by you application should probably go to the my_python_project.zip, to be deployed together with your application to the main instalation folder.

Libraries & executables

Libraries should be added to python_27.zip to the lib> folder, exectuables to the bin folder. Like this they will be deployed to a folder that is listed in $LD_LIBRARY_PATH and $PATH respectively.

NOTE: I haven't yet tested if running executables through subprocess actually works.

Ideas for improvement

There is definitely still room for improvement, such as:

  • customizes Necessitas Qt Creator PySide projects
  • building APKs from command line only without Qt Creator
  • show a progress bar when the bundled libs are unpacked on first start
  • modified bundling that doesn't unpack the files during startup bud during installation * this could speed up the first start quite a bit
  • compiling the many Qt Components files & images to a single resource file ?
  • documenting how to use Android specific APIs from Python
  • videos

Links

Source code listing

A convenient listing of sources for all the components used for the PySide & co port to Android. :)

Shiboken for Android https://github.com/M4rtinK/shiboken-android/tree/android

PySide for Android https://github.com/M4rtinK/pyside-android/tree/android

PySide for Android build scripts https://github.com/M4rtinK/android-pyside-build-scripts

Qt Components https://qt.gitorious.org/~martink/qt-components/martinks-ineans-qt-components/commits/android

Example program https://github.com/M4rtinK/expyside/tree/android

Example project for Necessitas QtCreator https://github.com/M4rtinK/android-pyside-example-project

Binary listing

List of relevant pre-built binaries

PySide libraries http://modrana.org/platforms/android/pyside/

PyQt libraries http://modrana.org/platforms/android/pyqt4/

Python 2.7 compiled for android- libs, executables & headers http://www.modrana.org/platforms/android/python2.7/python2.7_for_android_v1.zip

Qt Components for Android http://modrana.org/platforms/android/qt_components/qt_components_v1.zip

Cut-down Qt Components theme http://modrana.org/platforms/android/qt_components/qt_components_theme_mini_v1.zip

Example application APK http://modrana.org/platforms/android/pyside_example/PySideExample_1.2.apk

Acknowledgement

As usual with open source development, I haven't done all of this single handedly, but built on work done by others before me. So I'd like to both acknowledge on which work this is build upon and also provided links to the sources I've used: