Changes between Version 3 and Version 4 of PySideForAndroid


Ignore:
Timestamp:
Feb 11, 2013, 12:31:04 PM (11 years ago)
Author:
Martin Kolman
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PySideForAndroid

    v3 v4  
    33[[PageOutline]]
    44
    5 This article describes:
     5This guide describes:
    66* how to build Shiboken & !PySide for Android using the Necessitas SDK
    77* how to use the resulting libraries
    88* and how to bundle them with your Python program in a standalone APK
    99'''NOTE:''' If you just wan't to run you Python & !PySide programs on Android, you can skip the ''Building !PySide'' section.
     10
     11''' Do you see something incorrect or missing from the guide ? [http://modrana.org/trac#Contactthedeveloper Let me know], so I can fix it ! :)'''
    1012
    1113== Building !PySide ==
     
    4042
    4143=== Build ===
     44To start the build, just run the main build script, called ''build.sh'':
     45{{{
     46./build.sh
     47}}}
     48It first builds Shiboken, followed by !PySide. The script is fully automatic, but waits for the user to ''press any key'':
     49* after Shiboken is configured for build
     50* after Pyside is configured for build
     51Like this you can easily check for any errors during configuration.
     52
     53Also note, that when running the script, it clears any previous build results before building.
     54
     55You 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.
    4256
    4357=== Results ===
    44 
     58The resulting !PySide libraries compiled for Android are located in the ''stage/lib'' folder.
    4559
    4660== Acknowledgement ==