Hi everyone,<br> <br>I&#39;ve got some trouble in app integration after i finished my&nbsp;simple python script on maemo 3.2. &nbsp;As the tutorial says, I wrote a .desktop file and a .service file for integration with Maemo AF.  Unfortunately it didn&#39;t seem to work.&nbsp;&nbsp;My&nbsp;app&nbsp;doesn&#39;t&nbsp;start&nbsp;after&nbsp;a&nbsp;long&nbsp;time&nbsp;&#39;loading&#39;.&nbsp;&nbsp;I&nbsp;referred&nbsp;to&nbsp;some&nbsp;materials&nbsp;on&nbsp;libosso&nbsp;reference&nbsp;for&nbsp;python&nbsp;and&nbsp;tried&nbsp;to&nbsp;modify&nbsp;these&nbsp;files&nbsp;a&nbsp;little bit,&nbsp;but&nbsp;the&nbsp;consequence&nbsp;remained&nbsp;the&nbsp;same. &nbsp;When I transfer all the files to scratchbox and run it, sbox tells&nbsp;an&nbsp;information: &#39;we could not read lowmem page stats&#39;. &nbsp;What is it supposed to mean??<br>
<br>Here is the&nbsp;script code and integration file I&#39;ve written. &nbsp;Is there any place wrong??<br><br>#Here is the Python script name:&nbsp;pymaemo<br># nothing but a hildon.Window<br>#!/usr/bin/env python2.5<br><br>import gtk<br>
import hildon<br>import osso<br><br>class TestWindow( hildon.Program ) :<br>        &nbsp;&nbsp;&nbsp;&nbsp;def __init__( self ) :<br>                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;hildon.Program.__init__( self )<br>                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;self.window = hildon.Window()<br>
                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;self.window.set_title( &#39;pymaemo demo&#39; )<br>                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;self.window.connect( &#39;delete_event&#39;, lambda *w: gtk.main_quit() )<br>                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;self.window.show()<br>
<br>if __name__ == &quot;__main__&quot; : <br>                 &nbsp;&nbsp;&nbsp;&nbsp;osso_c = osso.Context( &#39;python_for_maemo&#39;, &#39;1.0&#39;, False )<br>        &nbsp;&nbsp;&nbsp;&nbsp;window = TestWindow()<br>&nbsp;&nbsp;&nbsp;&nbsp;gtk.main()<br><br>#&nbsp;Here is the desktop file name: python_for_maemo.desktop <br>
    [Desktop Entry]<br>Version=&#39;1.0&#39;<br>Encoding=UTF-8<br>Name=Python for Maemo Demo!<br>Exec=/usr/bin/pymaemo<br>Type=Application<br>X-Osso-Service=python_for_maemo<br>X-Osso-Type=application/x-executable<br><br>
#&nbsp;Here is the service file name : python_for_maemo.service <br>[D-BUS Service]<br>Name=com.nokia.python_for_maemo<br>Exec=/usr/bin/pymaemo<br> <br> Finally, I copied the python script to /usr/bin/, desktop file to /usr/share/application/hildon/ and&nbsp;service&nbsp;file&nbsp;to&nbsp;/usr/share/dbus-1/services.&nbsp;&nbsp;That&#39;s&nbsp;all&nbsp;what&nbsp;I&nbsp;did&nbsp;in&nbsp;desktop integration.&nbsp;&nbsp;Did&nbsp;I&nbsp;miss&nbsp;something&nbsp;or&nbsp;do&nbsp;something&nbsp;wrong&nbsp;here?&nbsp;&nbsp;Thanks&nbsp;for&nbsp;your&nbsp;advice&nbsp;in&nbsp;advance <br>