OchoTracks - 8tracks.com client for MeeGo and Maemo 5

I’ve been working on this new project since last week. Things are coming along, and hopefully I will be able to port it to BlackBerry 10 too. MeeGo - N9 Maemo 5 - N900 I’ll try to release a beta version of this next week!

March 10, 2013 · 1 min

BlackBerry 10 Cascades - console.log() and qDebug() output

This snippet of code will allow you to see the output of qDebug and console.log from the Momentics IDE when developing for BlackBerry 10. First we need to add this function to the main.cpp file: void myMessageOutput(QtMsgType type, const char* msg){ Q_UNUSED(type); fprintf(stdout, "%s\n", msg); fflush(stdout); } Inside our main() function, add this: //Message Handler qInstallMsgHandler(myMessageOutput); Now you will be able to see the output in the IDE while debugging your application, make sure to comment the qInstallMsgHandler line before exporting the Release version of your application.

February 5, 2013 · 1 min

N900 Mer boot to QMLViewer

The following kickstart files allows the n900 to boot into qmlviewer, I’m going to highlight just the bottom of it, with the next lines we create the launcher for the qmlviewer and then create a symbolic link to make it the default desktop environment. cat > /usr/share/xsessions/x-meego-qmlviewer.desktop << EOF [Desktop Entry] Version=1.0 Name=qmlviewer session Exec=/usr/bin/qmlviewer Type=Application EOF # Set symlink pointing to .desktop file ln -sf x-meego-qmlviewer.desktop /usr/share/xsessions/default.desktop Here is a video of N900 booting: ...

February 14, 2012 · 1 min

Fix for Failed to upload package: Failure on QtCreator

Just got hit by this problem, whenever I tried to deploy my application: 11:06:04: Package created. 11:06:04: Installing package to sysroot ... Package 'untitled' installed. 11:06:04: Preparing SFTP connection... 11:06:04: Starting upload... 11:06:04: Failed to upload package: Failure 11:06:04: Deploy step failed. Error while building project untitled (target: Harmattan) When executing build step 'Deploy Debian package via SFTP upload' And a notification warning about the little remaining data storage appeared on the device, which I wrongly ignored at first. The problem occurs because QtCreator tries to copy the debian packate to /tmp on the device, N9 for me, and it fails if the space is full. I managed to fill my /tmp partition (which is just 4Mb btw..) by testing some big application. Solution is, ssh to your device, check if you /tmp is full (df -h) and delete any .deb file left there by QtCreator. ...

February 7, 2012 · 2 min