Hi everyone,<br> <br>I've got some trouble in app integration after i finished my simple python script on maemo 3.2. As the tutorial says, I wrote a .desktop file and a .service file for integration with Maemo AF. Unfortunately it didn't seem to work. My app doesn't start after a long time 'loading'. I referred to some materials on libosso reference for python and tried to modify these files a little bit, but the consequence remained the same. When I transfer all the files to scratchbox and run it, sbox tells an information: 'we could not read lowmem page stats'. What is it supposed to mean??<br>
<br>Here is the script code and integration file I've written. Is there any place wrong??<br><br>#Here is the Python script name: 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> def __init__( self ) :<br> hildon.Program.__init__( self )<br> self.window = hildon.Window()<br>
self.window.set_title( 'pymaemo demo' )<br> self.window.connect( 'delete_event', lambda *w: gtk.main_quit() )<br> self.window.show()<br>
<br>if __name__ == "__main__" : <br> osso_c = osso.Context( 'python_for_maemo', '1.0', False )<br> window = TestWindow()<br> gtk.main()<br><br># Here is the desktop file name: python_for_maemo.desktop <br>
[Desktop Entry]<br>Version='1.0'<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>
# 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 service file to /usr/share/dbus-1/services. That's all what I did in desktop integration. Did I miss something or do something wrong here? Thanks for your advice in advance <br>