Namespaces
Variants
Actions

How to make a background running application in Qt

Jump to: navigation, search

This article demonstrates how to run an application in background. It generally a requirement in Symbian (mobile application in general) that we need a background task running always or started with a UI application. In this article we will see how simple it is to make a background running application which runs with out any any traces in Application menu.

Article Metadata

Tested with
Devices(s): Emulator / desktop / device

Compatibility
Platform(s): All Qt Supported

Article
Keywords: Qt Application
Created: skumar_rao (24 Nov 2010)
Last edited: hamishwillee (11 Oct 2012)

my_service.pro

QT       += core
QT -= gui
 
TARGET = myservice
CONFIG += console
CONFIG -= app_bundle
CONFIG += no_icon # this will do the trick for hiding application icon from menu

when you want your service to start you can just call

QProcess myservice;
myserverProcess.startDetached("myservice");


Related Articles

This page was last modified on 11 October 2012, at 04:17.
102 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved