Namespaces
Variants
Actions

Archived:Reading IMSI in Qt for Symbian

Jump to: navigation, search
Archived.png
Archived: This article is archived because it is not considered relevant for third-party developers creating commercial solutions today. If you think this article is still relevant, let us know by adding the template {{ReviewForRemovalFromArchive|user=~~~~|write your reason here}}.

This relies on deprecated Mobile Extensions. Developers should instead use the cross platform Qt Mobility API:QSystemDeviceInfo
Article Metadata

Code Example
Source file: Media:QtGetIMSI.zip

Tested with
Devices(s): Nokia 5800 XpressMusic

Compatibility
Platform(s): S60 3rd Edition, FP1, FP2
S60 5th Edition

Article
Keywords: XQSysInfo::imsi()
Created: savaj (20 Jun 2009)
Last edited: hamishwillee (11 Oct 2012)


Contents

Overview

This code snippets shows how to get IMSI number using a Mobile Extension. The XQSysInfo class provides information about the device. imsi() method of class XQSysInfo return IMSI number.

This snippet requires ReadDeviceData capabilities. Self-signing is not possible because a Developer Certificate (Symbian Signed) is needed.

Preconditions

Headers required

 #include <XQSysInfo>

.pro file

symbian:LIBS += -letel3rdparty \
-lsysutil \
-lefsrv \
-lfeatdiscovery
 
symbian:TARGET.CAPABILITY = ReadDeviceData

Source

XQSysInfo *sysInfo = new XQSysInfo();
/* show IMSI on label */
QLabel *IMSI = new QLabel("IMSI: "+sysInfo->imsi());


Code Example

  • The Code Example will show IMSI on screen and is tested on Nokia 5800 XpressMusic.
This page was last modified on 11 October 2012, at 04:19.
425 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