Changes between Version 22 and Version 23 of android


Ignore:
Timestamp:
Jan 15, 2013, 1:32:25 PM (11 years ago)
Author:
Martin Kolman
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • android

    v22 v23  
    8686* Ministro II - provides Alpha 3 libraries (cca 0.34)
    8787
    88 The ALpha 2 Qt libraries provided by necessitas are suable, but have a few issues, for example:
    89  * text both in Qt widgets and QML is rendered as rectangles '''unleess it is set to italic'''
     88The Alpha 2 Qt libraries provided by necessitas are suable, but have a few issues, for example:
     89 * text both in Qt widgets and QML is rendered as rectangles '''unless it is set to italic'''
    9090 
    9191This is more of a technical overview as from the point of view of the Python application, all this (making sure Ministro is installed & requesting Qt Libraries) is handled by the !PySide Launcher and the application does'n need to be even aware of it.
     
    178178}}}
    179179
    180 Then add the Necessitas Qt libraries to your PATH:
    181 
    182 {{{
     180Then add the Necessitas Qt libraries & the Necessitas NDK to your PATH:
     181
     182{{{
     183
     184export ANDROID_NDK_ROOT=<path to folder with the Necessitas SDK>/necessitas/android-ndk
     185export ANDROID_TARGET_ARCH=armeabi
    183186export QTDIR=<path to folder with the Necessitas SDK>/necessitas/Android/Qt/482/armeabi
    184187export PATH="$QTDIR/bin:$PATH"
    185188}}}
    186189
     190Setting the ANDROID_TARGET_ARCH is optional, it can be set either to ''armeabi'' or to ''armeabiv7'' for some improved (?) ABI with floating point acceleration (?).
     191
    187192And configure the Qt components against them.
    188193{{{
    189194./configure --android
    190 }}}
    191 
    192 For some reason Qmake then starts to thing that the Necessitas SDK directory is located in ''$HOME/necessitas''. Just make a symlink to the real directory to fix this:
    193 
    194 {{{
    195 ln -s <real path to necessitas SDK folder> $HOME/necessitas
    196195}}}
    197196